summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-54556-temps-in-tail-diagnostic.rs
blob: 2935caaf25cc1d7177470de484fbdc72e7208568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
fn main() {
    {
        let mut _thing1 = D(Box::new("thing1"));
        // D("other").next(&_thing1).end()
        D(&_thing1).end() //~ 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) { }
}