0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-25 15:29:43 -05:00
denoland-rusty-v8/tests/compile_fail/handle_scope_lifetime_4.stderr

12 lines
508 B
Text
Raw Normal View History

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