2018-08-08 14:28:26 +02:00
|
|
|
error[E0597]: `o2` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck_trait_cycle_checked.rs:111:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | o1.set0(&o2); //~ ERROR `o2` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - borrowed value only lives until here
|
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
|
|
|
|
|
|
|
error[E0597]: `o3` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck_trait_cycle_checked.rs:112:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | o1.set1(&o3); //~ ERROR `o3` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - borrowed value only lives until here
|
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
|
|
|
|
|
|
|
error[E0597]: `o2` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck_trait_cycle_checked.rs:113:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | o2.set0(&o2); //~ ERROR `o2` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - borrowed value only lives until here
|
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
|
|
|
|
|
|
|
error[E0597]: `o3` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck_trait_cycle_checked.rs:114:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | o2.set1(&o3); //~ ERROR `o3` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - borrowed value only lives until here
|
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
|
|
|
|
|
|
|
error[E0597]: `o1` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck_trait_cycle_checked.rs:115:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | o3.set0(&o1); //~ ERROR `o1` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
LL | o3.set1(&o2); //~ ERROR `o2` does not live long enough
|
|
|
|
LL | }
|
|
|
|
| - borrowed value only lives until here
|
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
|
|
|
|
|
|
|
error[E0597]: `o2` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck_trait_cycle_checked.rs:116:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | o3.set1(&o2); //~ ERROR `o2` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
LL | }
|
|
|
|
| - borrowed value only lives until here
|
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|