2018-12-02 22:42:43 +03:00
|
|
|
error[E0597]: `arena` does not live long enough
|
2018-12-25 08:56:47 -07: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
|
|
|
|
LL | } //~^ ERROR `arena` does not live long enough
|
|
|
|
| - `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`.
|