mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 15:07:00 -05:00
10 lines
440 B
Text
10 lines
440 B
Text
error[E0597]: `scope2` does not live long enough
|
|
--> $DIR/handle_scope_lifetime_4.rs:10:35
|
|
|
|
|
8 | let mut _scope3 = {
|
|
| ----------- borrow later stored here
|
|
9 | let mut scope2 = v8::HandleScope::new(&mut scope1);
|
|
10 | v8::EscapableHandleScope::new(&mut scope2)
|
|
| ^^^^^^^^^^^ borrowed value does not live long enough
|
|
11 | };
|
|
| - `scope2` dropped here while still borrowed
|