struct S1 &'a i32>(F); //~ ERROR use of undeclared lifetime name `'a` struct S2 &i32>(F); //~ ERROR missing lifetime specifier struct S3 Fn(&i32, &i32) -> &'a i32>(F); //~^ ERROR binding for associated type `Output` references lifetime `'a`, which does not appear struct S4 Fn(&'x i32, &'x i32) -> &'x i32>(F); const C: Option Fn(&usize, &usize) -> &'a usize>> = None; //~^ ERROR binding for associated type `Output` references lifetime `'a`, which does not appear fn main() {}