mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 15:07:00 -05:00
12 lines
372 B
Text
12 lines
372 B
Text
|
error[E0597]: `hs1` does not live long enough
|
||
|
--> $DIR/handle_scope_escape_lifetime.rs:11:15
|
||
|
|
|
||
|
9 | let _fail = {
|
||
|
| ----- borrow later stored here
|
||
|
10 | let mut hs1 = v8::HandleScope::new(hs0);
|
||
|
11 | let hs1 = hs1.enter();
|
||
|
| ^^^ borrowed value does not live long enough
|
||
|
...
|
||
|
18 | };
|
||
|
| - `hs1` dropped here while still borrowed
|