rust/tests/ui/nll/issue-55394.rs

14 lines
158 B
Rust

struct Bar;
struct Foo<'s> {
bar: &'s mut Bar,
}
impl Foo<'_> {
fn new(bar: &mut Bar) -> Self {
Foo { bar } //~ERROR
}
}
fn main() { }