mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
17 lines
241 B
Rust
17 lines
241 B
Rust
// check-pass
|
|
|
|
#![feature(non_lifetime_binders)]
|
|
//~^ WARN the feature `non_lifetime_binders` is incomplete
|
|
|
|
trait Foo: for<T> Bar<T> {}
|
|
|
|
trait Bar<T> {
|
|
fn method() -> T;
|
|
}
|
|
|
|
fn x<T: Foo>() {
|
|
let _: i32 = T::method();
|
|
}
|
|
|
|
fn main() {}
|