// check-pass #![feature(non_lifetime_binders)] //~^ WARN is incomplete and may not be safe pub fn foo() where for V: Sized, { bar(); } pub fn bar() where for V: Sized, { } pub fn main() {}