]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/dropck_direct_cycle_with_drop.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / dropck_direct_cycle_with_drop.stderr
1 error[E0597]: `d2` does not live long enough
2   --> $DIR/dropck_direct_cycle_with_drop.rs:36:19
3    |
4 LL |     d1.p.set(Some(&d2));
5    |                   ^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | -
9    | |
10    | `d2` dropped here while still borrowed
11    | borrow might be used here, when `d1` is dropped and runs the `Drop` code for type `D`
12    |
13    = note: values in a scope are dropped in the opposite order they are defined
14
15 error[E0597]: `d1` does not live long enough
16   --> $DIR/dropck_direct_cycle_with_drop.rs:38:19
17    |
18 LL |     d2.p.set(Some(&d1));
19    |                   ^^^ borrowed value does not live long enough
20 LL |
21 LL | }
22    | -
23    | |
24    | `d1` dropped here while still borrowed
25    | borrow might be used here, when `d1` is dropped and runs the `Drop` code for type `D`
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0597`.