blob: f813d1c915cf62fe97d6dbb68175844f4cbf1117 [file] [log] [blame]
struct Bar;
struct Foo<'s> {
bar: &'s mut Bar,
}
impl Foo<'_> {
fn new(bar: &mut Bar) -> Self {
Foo { bar } //~ERROR
}
}
fn main() { }