1 2 3 4 5 6 7 8 9 10 11 12 13
struct Bar; struct Foo<'s> { bar: &'s mut Bar, } impl Foo<'_> { fn new(bar: &mut Bar) -> Self { Foo { bar } //~ERROR } } fn main() { }