]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/two-phase-reservation-sharing-interference-2.migrate2018.stderr
Adjust the mutable_borrow_reservation_conflict message
[rust.git] / src / test / ui / borrowck / two-phase-reservation-sharing-interference-2.migrate2018.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:30: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 warning: cannot borrow `v` as mutable because it is also borrowed as immutable
24   --> $DIR/two-phase-reservation-sharing-interference-2.rs:42:5
25    |
26 LL |     let shared = &v;
27    |                  -- immutable borrow occurs here
28 LL | 
29 LL |     v.push(shared.len());
30    |     ^      ------ immutable borrow later used here
31    |     |
32    |     mutable borrow occurs here
33    |
34    = note: #[warn(mutable_borrow_reservation_conflict)] on by default
35    = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future
36    = note: for more information, see issue #59159 <https://github.com/rust-lang/rust/issues/59159>
37
38 error: aborting due to 2 previous errors
39
40 For more information about this error, try `rustc --explain E0502`.