rust/src/test/ui/span/issue28498-reject-ex1.stderr

24 lines
792 B
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0597]: `foo.data` does not live long enough
--> $DIR/issue28498-reject-ex1.rs:46:1
|
44 | foo.data[0].1.set(Some(&foo.data[1]));
| -------- borrow occurs here
45 | foo.data[1].1.set(Some(&foo.data[0]));
46 | }
| ^ `foo.data` 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]: `foo.data` does not live long enough
--> $DIR/issue28498-reject-ex1.rs:46:1
|
45 | foo.data[1].1.set(Some(&foo.data[0]));
| -------- borrow occurs here
46 | }
| ^ `foo.data` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error: aborting due to previous error(s)