]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/two-phase-cannot-nest-mut-self-calls.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / borrowck / two-phase-cannot-nest-mut-self-calls.stderr
CommitLineData
b7449926 1error[E0502]: cannot borrow `vec` as mutable because it is also borrowed as immutable
923072b8 2 --> $DIR/two-phase-cannot-nest-mut-self-calls.rs:14:9
b7449926 3 |
c295e0f8
XL
4LL | vec.get({
5 | - --- immutable borrow later used by call
6 | _____|
7 | |
8LL | |
9LL | | vec.push(2);
10 | | ^^^^^^^^^^^ mutable borrow occurs here
11LL | |
12LL | |
13LL | | 0
14LL | | });
15 | |______- immutable borrow occurs here
b7449926
XL
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0502`.