os-rust/src/test/ui/borrowck/two-phase-cannot-nest-mut-self-calls.stderr

15 lines
452 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0502]: cannot borrow `vec` as mutable because it is also borrowed as immutable
2018-12-25 08:56:47 -07:00
--> $DIR/two-phase-cannot-nest-mut-self-calls.rs:16:9
2018-08-08 14:28:26 +02:00
|
LL | vec.get({
| --- --- immutable borrow later used by call
| |
| immutable borrow occurs here
LL |
LL | vec.push(2);
| ^^^ mutable borrow occurs here
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0502`.