// check-pass // Basic test that show's we can succesfully typeck a `for` where clause. #![feature(non_lifetime_binders)] //~^ WARN the feature `non_lifetime_binders` is incomplete trait Trait {} impl Trait for T {} fn foo() where for T: Trait, { } fn main() { foo(); }