rust/src/test/ui/dropck/dropck_trait_cycle_checked.stderr
2018-12-25 21:08:33 -07:00

69 lines
2.2 KiB
Plaintext

error[E0597]: `o2` does not live long enough
--> $DIR/dropck_trait_cycle_checked.rs:111:14
|
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
--> $DIR/dropck_trait_cycle_checked.rs:112:14
|
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
--> $DIR/dropck_trait_cycle_checked.rs:113:14
|
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
--> $DIR/dropck_trait_cycle_checked.rs:114:14
|
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
--> $DIR/dropck_trait_cycle_checked.rs:115:14
|
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
--> $DIR/dropck_trait_cycle_checked.rs:116:14
|
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`.