2018-12-02 22:42:43 +03:00
|
|
|
error[E0597]: `arena` does not live long enough
|
2019-03-12 00:49:17 +00:00
|
|
|
--> $DIR/dropck-tarena-cycle-checked.rs:116:8
|
2018-12-02 22:42:43 +03:00
|
|
|
|
|
|
|
|
LL | f(&arena);
|
|
|
|
| ^^^^^ borrowed value does not live long enough
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | }
|
2018-12-02 22:42:43 +03:00
|
|
|
| - `arena` 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
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|