0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-28 16:21:04 -05:00
denoland-rusty-v8/tests/compile_fail/try_catch_exception_lifetime.stderr
2020-06-26 01:42:00 +02:00

11 lines
511 B
Text

error[E0597]: `scope3` does not live long enough
--> $DIR/try_catch_exception_lifetime.rs:15:43
|
13 | let _exception = {
| ---------- borrow later stored here
14 | let mut scope3 = v8::HandleScope::new(&mut scope2);
15 | let mut scope4 = v8::HandleScope::new(&mut scope3);
| ^^^^^^^^^^^ borrowed value does not live long enough
16 | try_catch.exception(&mut scope4).unwrap()
17 | };
| - `scope3` dropped here while still borrowed