blob: 47754da8b78d97f8f6508678d4aef837a5aad408 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error[E0597]: `arena` does not live long enough
--> $DIR/dropck_tarena_unsound_drop.rs:41:8
|
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`.
|