rust/tests/ui-fulldeps/dropck-tarena-unsound-drop....

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
567 B
Plaintext
Raw Normal View History

error[E0597]: `arena` does not live long enough
--> $DIR/dropck-tarena-unsound-drop.rs:41:7
|
2023-01-16 03:57:32 +08:00
LL | let arena: TypedArena<C> = TypedArena::default();
| ----- binding `arena` declared here
LL | f(&arena);
| ^^^^^^ borrowed value does not live long enough
2019-03-09 20:03:44 +08:00
LL | }
| -
| |
| `arena` dropped here while still borrowed
| borrow might be used here, when `arena` is dropped and runs the `Drop` code for type `TypedArena`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0597`.