2017-05-27 12:58:52 -05:00
|
|
|
error[E0597]: `foo.data` does not live long enough
|
2016-10-14 10:55:45 -05:00
|
|
|
--> $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
|
2016-10-14 10:55:45 -05:00
|
|
|
--> $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
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-10-14 10:55:45 -05:00
|
|
|
|