]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-adjusted-lvalue-op.nll.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / regions / regions-adjusted-lvalue-op.nll.stderr
1 error[E0502]: cannot borrow `v` as immutable because it is also borrowed as mutable
2   --> $DIR/regions-adjusted-lvalue-op.rs:14:16
3    |
4 LL |     v[0].oh_no(&v); //~ ERROR cannot borrow `v` as immutable because
5    |     -    ----- ^^ immutable borrow occurs here
6    |     |    |
7    |     |    mutable borrow later used by call
8    |     mutable borrow occurs here
9
10 error[E0502]: cannot borrow `v` as immutable because it is also borrowed as mutable
11   --> $DIR/regions-adjusted-lvalue-op.rs:15:16
12    |
13 LL |     (*v).oh_no(&v); //~ ERROR cannot borrow `v` as immutable because
14    |       -  ----- ^^ immutable borrow occurs here
15    |       |  |
16    |       |  mutable borrow later used by call
17    |       mutable borrow occurs here
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0502`.