1 2 3 4 5 6
fn foo<T>() where for<'a> T: 'a {} fn main<'a>() { foo::<&'a i32>(); //~^ ERROR the type `&'a i32` does not fulfill the required lifetime }