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/handle_scope_lifetime_2.stderr

10 lines
514 B
Text

error[E0499]: cannot borrow `*hs1` as mutable more than once at a time
--> $DIR/handle_scope_lifetime_2.rs:14:34
|
11 | let mut hs2 = v8::EscapableHandleScope::new(hs1);
| --- first mutable borrow occurs here
...
14 | let _local2 = v8::Integer::new(hs1, 123);
| ^^^ second mutable borrow occurs here
15 | let _local3 = v8::Integer::new(hs2, 123);
| --- first borrow later used here