2020-06-03 01:38:34 -04:00
|
|
|
error[E0597]: `scope3` does not live long enough
|
2021-10-27 08:32:12 -04:00
|
|
|
--> $DIR/try_catch_message_lifetime.rs:11:43
|
2019-12-22 10:22:44 -05:00
|
|
|
|
|
2021-10-27 08:32:12 -04:00
|
|
|
9 | let _message = {
|
2020-06-03 01:38:34 -04:00
|
|
|
| -------- borrow later stored here
|
2021-10-27 08:32:12 -04:00
|
|
|
10 | let mut scope3 = v8::HandleScope::new(&mut scope2);
|
|
|
|
11 | let mut scope4 = v8::HandleScope::new(&mut scope3);
|
2020-06-03 01:38:34 -04:00
|
|
|
| ^^^^^^^^^^^ borrowed value does not live long enough
|
2020-06-25 19:40:53 -04:00
|
|
|
...
|
2021-10-27 08:32:12 -04:00
|
|
|
14 | };
|
2020-06-03 01:38:34 -04:00
|
|
|
| - `scope3` dropped here while still borrowed
|