2017-05-27 12:58:52 -05:00
|
|
|
error[E0597]: `bomb` does not live long enough
|
2016-10-14 10:55:45 -05:00
|
|
|
--> $DIR/dropck_misc_variants.rs:34:1
|
|
|
|
|
|
|
|
|
33 | _w = Wrap::<&[&str]>(NoisyDrop(&bomb));
|
|
|
|
| ---- borrow occurs here
|
|
|
|
34 | }
|
|
|
|
| ^ `bomb` dropped here while still borrowed
|
|
|
|
|
|
|
|
|
= note: values in a scope are dropped in the opposite order they are created
|
|
|
|
|
2017-05-27 12:58:52 -05:00
|
|
|
error[E0597]: `v` does not live long enough
|
2016-10-14 10:55:45 -05:00
|
|
|
--> $DIR/dropck_misc_variants.rs:44:1
|
|
|
|
|
|
|
|
|
41 | let u = NoisyDrop(&v);
|
|
|
|
| - borrow occurs here
|
|
|
|
...
|
|
|
|
44 | }
|
|
|
|
| ^ `v` dropped here while still borrowed
|
|
|
|
|
|
|
|
|
= note: values in a scope are dropped in the opposite order they are created
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-10-14 10:55:45 -05:00
|
|
|
|