]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-object-lifetime.stderr
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / ui / borrowck / borrowck-object-lifetime.stderr
1 error[E0502]: cannot borrow `*x` as mutable because it is also borrowed as immutable
2   --> $DIR/borrowck-object-lifetime.rs:20:13
3    |
4 LL |     let y = x.borrowed();
5    |             ------------ immutable borrow occurs here
6 LL |     let z = x.mut_borrowed();
7    |             ^^^^^^^^^^^^^^^^ mutable borrow occurs here
8 LL |     y.use_ref();
9    |     ----------- immutable borrow later used here
10
11 error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
12   --> $DIR/borrowck-object-lifetime.rs:26:13
13    |
14 LL |     let y = x.borrowed();
15    |             ------------ immutable borrow occurs here
16 LL |     let z = &mut x;
17    |             ^^^^^^ mutable borrow occurs here
18 LL |     y.use_ref();
19    |     ----------- immutable borrow later used here
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0502`.