0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-29 16:31:01 -05:00
denoland-rusty-v8/tests/compile_fail/handle_scope_lifetime_1.stderr

10 lines
527 B
Text

error[E0499]: cannot borrow `*hs1` as mutable more than once at a time
--> $DIR/handle_scope_lifetime_1.rs:12:44
|
9 | let mut hs2 = v8::EscapableHandleScope::new(hs1);
| --- first mutable borrow occurs here
...
12 | let _hs3 = v8::EscapableHandleScope::new(hs1);
| ^^^ second mutable borrow occurs here
13 | let _local = v8::Integer::new(hs2, 123);
| --- first borrow later used here