]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/two-phase-reservation-sharing-interference-2.nll2015.stderr
Remove mutable_borrow_reservation_conflict lint
[rust.git] / src / test / ui / borrowck / two-phase-reservation-sharing-interference-2.nll2015.stderr
1 error[E0502]: cannot borrow `v` as mutable because it is also borrowed as immutable
2   --> $DIR/two-phase-reservation-sharing-interference-2.rs:19:5
3    |
4 LL |     let shared = &v;
5    |                  -- immutable borrow occurs here
6 LL | 
7 LL |     v.extend(shared);
8    |     ^^------^^^^^^^^
9    |     | |
10    |     | immutable borrow later used by call
11    |     mutable borrow occurs here
12
13 error[E0502]: cannot borrow `v` as mutable because it is also borrowed as immutable
14   --> $DIR/two-phase-reservation-sharing-interference-2.rs:29:5
15    |
16 LL |     v.extend(&v);
17    |     ^^------^--^
18    |     | |      |
19    |     | |      immutable borrow occurs here
20    |     | immutable borrow later used by call
21    |     mutable borrow occurs here
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0502`.