]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-24895-copy-clone-dropck.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / issue-24895-copy-clone-dropck.stderr
1 error[E0597]: `d1` does not live long enough
2   --> $DIR/issue-24895-copy-clone-dropck.rs:27: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`.