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