]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/dropck_vec_cycle_checked.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / dropck_vec_cycle_checked.stderr
1 error[E0597]: `c2` does not live long enough
2   --> $DIR/dropck_vec_cycle_checked.rs:98:24
3    |
4 LL |     c1.v[0].v.set(Some(&c2));
5    |                        ^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | -
9    | |
10    | `c2` dropped here while still borrowed
11    | borrow might be used here, when `c1` is dropped and runs the destructor for type `C<'_>`
12    |
13    = note: values in a scope are dropped in the opposite order they are defined
14
15 error[E0597]: `c3` does not live long enough
16   --> $DIR/dropck_vec_cycle_checked.rs:100:24
17    |
18 LL |     c1.v[1].v.set(Some(&c3));
19    |                        ^^^ borrowed value does not live long enough
20 ...
21 LL | }
22    | -
23    | |
24    | `c3` dropped here while still borrowed
25    | borrow might be used here, when `c1` is dropped and runs the destructor for type `C<'_>`
26    |
27    = note: values in a scope are dropped in the opposite order they are defined
28
29 error[E0597]: `c1` does not live long enough
30   --> $DIR/dropck_vec_cycle_checked.rs:104:24
31    |
32 LL |     c3.v[0].v.set(Some(&c1));
33    |                        ^^^ borrowed value does not live long enough
34 ...
35 LL | }
36    | -
37    | |
38    | `c1` dropped here while still borrowed
39    | borrow might be used here, when `c1` is dropped and runs the destructor for type `C<'_>`
40
41 error: aborting due to 3 previous errors
42
43 For more information about this error, try `rustc --explain E0597`.