]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/issue-24895-copy-clone-dropck.nll.stderr
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / span / issue-24895-copy-clone-dropck.nll.stderr
1 error[E0597]: `d1` does not live long enough
2 --> $DIR/issue-24895-copy-clone-dropck.rs:37:14
3 |
4 LL | d2 = D(S(&d1, "inner"), "d2");
5 | ^^^ borrowed value does not live long enough
6 LL | }
7 | -
8 | |
9 | `d1` dropped here while still borrowed
10 | borrow might be used here, when `d2` is dropped and runs the `Drop` code for type `D`
11 |
12 = note: values in a scope are dropped in the opposite order they are defined
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0597`.