summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/issue-36537.rs
blob: a5546ccbb602e87f972b7878f6afa4356ad74e2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    let p;
    {
        let a = 42;
        p = &a;
        //~^ ERROR `a` does not live long enough

    }
    p.use_ref();

}

trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { }  }
impl<T> Fake for T { }