summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-55394.rs
blob: f813d1c915cf62fe97d6dbb68175844f4cbf1117 (plain)
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() { }