0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-22 15:07:00 -05:00
denoland-rusty-v8/tests/compile_fail/try_catch_message_lifetime.stderr

13 lines
527 B
Text
Raw Normal View History

error[E0597]: `scope3` does not live long enough
2023-07-11 14:50:03 -04:00
--> tests/compile_fail/try_catch_message_lifetime.rs:11:43
|
2021-10-27 08:32:12 -04:00
9 | let _message = {
| -------- borrow later stored here
2021-10-27 08:32:12 -04:00
10 | let mut scope3 = v8::HandleScope::new(&mut scope2);
2023-07-11 14:50:03 -04:00
| ---------- binding `scope3` declared here
2021-10-27 08:32:12 -04:00
11 | let mut scope4 = v8::HandleScope::new(&mut scope3);
| ^^^^^^^^^^^ borrowed value does not live long enough
...
2021-10-27 08:32:12 -04:00
14 | };
| - `scope3` dropped here while still borrowed