// check-pass #![feature(non_lifetime_binders)] //~^ WARN the feature `non_lifetime_binders` is incomplete trait Foo: for Bar {} trait Bar { fn method() -> T; } fn x() { let _: i32 = T::method(); } fn main() {}