]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/vec_refs_data_with_early_death.stderr
Rollup merge of #56796 - KrishnaSannasi:try_from_impl_change, r=shepmaster
[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:13
3    |
4 LL |     v.push(&x);
5    |             ^ borrowed value does not live long enough
6 ...
7 LL | }
8    | - `x` dropped here while still borrowed
9    |
10    = note: values in a scope are dropped in the opposite order they are created
11
12 error[E0597]: `y` does not live long enough
13   --> $DIR/vec_refs_data_with_early_death.rs:19:13
14    |
15 LL |     v.push(&y);
16    |             ^ borrowed value does not live long enough
17 ...
18 LL | }
19    | - `y` dropped here while still borrowed
20    |
21    = note: values in a scope are dropped in the opposite order they are created
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0597`.