1 2 3 4 5 6 7 8 9 10 11
struct Foo<'a> { a: &'a i32, } impl<'a> Foo<'a> { fn f<'a>(x: &'a i32) { //~ ERROR E0496 } } fn main() { }