2020-06-03 01:38:34 -04:00
|
|
|
error[E0597]: `scope2` does not live long enough
|
|
|
|
--> $DIR/handle_scope_escape_lifetime.rs:10:43
|
2020-01-19 21:16:37 -05:00
|
|
|
|
|
2020-06-03 01:38:34 -04:00
|
|
|
8 | let _local = {
|
2020-02-12 18:20:24 -05:00
|
|
|
| ------ borrow later stored here
|
2020-06-03 01:38:34 -04:00
|
|
|
9 | let mut scope2 = v8::HandleScope::new(&mut scope1);
|
|
|
|
10 | let mut scope3 = v8::HandleScope::new(&mut scope2);
|
|
|
|
| ^^^^^^^^^^^ borrowed value does not live long enough
|
2020-01-19 21:16:37 -05:00
|
|
|
...
|
2020-06-03 01:38:34 -04:00
|
|
|
14 | };
|
|
|
|
| - `scope2` dropped here while still borrowed
|