blob: ddd47e97434970c79282b77a95f25a4a78de5e7a [file] [log] [blame]
error[E0597]: `c` does not live long enough
--> $DIR/dropck-eyepatch-reorder.rs:58:20
|
LL | dt = Dt("dt", &c);
| ^ borrowed value does not live long enough
...
LL | }
| - `c` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error[E0597]: `c` does not live long enough
--> $DIR/dropck-eyepatch-reorder.rs:60:20
|
LL | dr = Dr("dr", &c);
| ^ borrowed value does not live long enough
...
LL | }
| - `c` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error[E0597]: `c_shortest` does not live long enough
--> $DIR/dropck-eyepatch-reorder.rs:64:20
|
LL | dt = Dt("dt", &c_shortest);
| ^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| - `c_shortest` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error[E0597]: `c_shortest` does not live long enough
--> $DIR/dropck-eyepatch-reorder.rs:67:20
|
LL | dr = Dr("dr", &c_shortest);
| ^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| - `c_shortest` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error[E0597]: `c_shortest` does not live long enough
--> $DIR/dropck-eyepatch-reorder.rs:74:29
|
LL | pt = Pt("pt", &c_long, &c_shortest);
| ^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| - `c_shortest` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error[E0597]: `c_shortest` does not live long enough
--> $DIR/dropck-eyepatch-reorder.rs:76:29
|
LL | pr = Pr("pr", &c_long, &c_shortest);
| ^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| - `c_shortest` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0597`.