mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 15:07:00 -05:00
9 lines
557 B
Text
9 lines
557 B
Text
error[E0499]: cannot borrow `scope1` as mutable more than once at a time
|
|
--> $DIR/handle_scope_lifetime_2.rs:7:34
|
|
|
|
|
6 | let mut scope2 = v8::EscapableHandleScope::new(&mut scope1);
|
|
| ----------- first mutable borrow occurs here
|
|
7 | let _local1 = v8::Integer::new(&mut scope1, 123);
|
|
| ^^^^^^^^^^^ second mutable borrow occurs here
|
|
8 | let _local2 = v8::Integer::new(&mut scope2, 123);
|
|
| ----------- first borrow later used here
|