]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-adjusted-lvalue-op.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / regions / regions-adjusted-lvalue-op.stderr
1 error[E0502]: cannot borrow `v` as immutable because it is also borrowed as mutable
2   --> $DIR/regions-adjusted-lvalue-op.rs:24:17
3    |
4 LL |     v[0].oh_no(&v); //~ ERROR cannot borrow `v` as immutable because
5    |     -           ^- mutable borrow ends here
6    |     |           |
7    |     |           immutable borrow occurs here
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:25:17
12    |
13 LL |     (*v).oh_no(&v); //~ ERROR cannot borrow `v` as immutable because
14    |       -         ^- mutable borrow ends here
15    |       |         |
16    |       |         immutable borrow occurs here
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`.