2020-06-03 07:38:34 +02:00
|
|
|
error[E0597]: `scope3` does not live long enough
|
2020-06-26 01:40:53 +02:00
|
|
|
--> $DIR/try_catch_exception_lifetime.rs:12:43
|
2019-12-22 16:22:44 +01:00
|
|
|
|
|
2020-06-26 01:40:53 +02:00
|
|
|
10 | let _exception = {
|
2020-02-12 15:20:24 -08:00
|
|
|
| ---------- borrow later stored here
|
2020-06-26 01:40:53 +02:00
|
|
|
11 | let mut scope3 = v8::HandleScope::new(&mut scope2);
|
|
|
|
12 | let mut scope4 = v8::HandleScope::new(&mut scope3);
|
2020-06-03 07:38:34 +02:00
|
|
|
| ^^^^^^^^^^^ borrowed value does not live long enough
|
2020-06-26 01:40:53 +02:00
|
|
|
...
|
|
|
|
15 | };
|
2020-06-03 07:38:34 +02:00
|
|
|
| - `scope3` dropped here while still borrowed
|