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
|
|
|
|
|
2018-09-29 11:47:47 +01:00
|
|
|
LL | vec.get({
|
|
|
|
| --- --- immutable borrow later used by call
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
|
|
|
LL |
|
|
|
|
LL | vec.push(2);
|
2019-03-01 20:10:01 +00:00
|
|
|
| ^^^ 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`.
|