mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
17 lines
259 B
Rust
17 lines
259 B
Rust
// check-pass
|
|
|
|
#![feature(non_lifetime_binders)]
|
|
//~^ WARN the feature `non_lifetime_binders` is incomplete
|
|
|
|
trait Trait<T: ?Sized> {}
|
|
|
|
impl<T: ?Sized> Trait<T> for i32 {}
|
|
|
|
fn produce() -> impl for<T> Trait<T> {
|
|
16
|
|
}
|
|
|
|
fn main() {
|
|
let _ = produce();
|
|
}
|