2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `c2` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/dropck_vec_cycle_checked.rs:98:24
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
|
|
|
LL | c1.v[0].v.set(Some(&c2));
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^ borrowed value does not live long enough
|
2016-10-14 15:55:45 +00:00
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2019-04-22 07:40:08 +00:00
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| `c2` dropped here while still borrowed
|
|
|
|
| borrow might be used here, when `c1` is dropped and runs the destructor for type `C<'_>`
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
= note: values in a scope are dropped in the opposite order they are defined
|
2016-10-14 15:55:45 +00:00
|
|
|
|
2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `c3` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/dropck_vec_cycle_checked.rs:100:24
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
|
|
|
LL | c1.v[1].v.set(Some(&c3));
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^ borrowed value does not live long enough
|
2016-10-14 15:55:45 +00:00
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2019-04-22 07:40:08 +00:00
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| `c3` dropped here while still borrowed
|
|
|
|
| borrow might be used here, when `c1` is dropped and runs the destructor for type `C<'_>`
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
= note: values in a scope are dropped in the opposite order they are defined
|
2016-10-14 15:55:45 +00:00
|
|
|
|
2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `c1` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/dropck_vec_cycle_checked.rs:104:24
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
|
|
|
LL | c3.v[0].v.set(Some(&c1));
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^ borrowed value does not live long enough
|
2017-12-14 01:27:23 +00:00
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2019-04-22 07:40:08 +00:00
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| `c1` dropped here while still borrowed
|
|
|
|
| borrow might be used here, when `c1` is dropped and runs the destructor for type `C<'_>`
|
2016-10-14 15:55:45 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2016-10-14 15:55:45 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|