summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-54382-use-span-of-tail-of-block.rs
blob: 312e6dce8c795b020beda0ab85d00b37b90c97bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
fn main() {
    {
        let mut _thing1 = D(Box::new("thing1"));
        {
            let _thing2 = D("thing2");
            side_effects();
            D("other").next(&_thing1)
//~^ ERROR does not live long enough
        }
    }

    ;
}

#[derive(Debug)]
struct D<T: std::fmt::Debug>(T);

impl<T: std::fmt::Debug>  Drop for D<T> {
    fn drop(&mut self) {
        println!("dropping {:?})", self);
    }
}

impl<T: std::fmt::Debug> D<T> {
    fn next<U: std::fmt::Debug>(&self, _other: U) -> D<U> { D(_other) }
    fn end(&self) { }
}

fn side_effects() { }