rust/tests/ui/borrowck/two-phase-activation-sharing-interference.nll_target.stderr
Zalathar 14d56e8338 Fix test problems discovered by the revision check
Most of these changes either add revision names that were apparently missing,
or explicitly mark a revision name as currently unused.
2024-05-09 14:47:09 +10:00

48 lines
1.6 KiB
Plaintext

error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
--> $DIR/two-phase-activation-sharing-interference.rs:29:15
|
LL | let y = &mut x;
| ------ mutable borrow occurs here
LL | { let z = &x; read(z); }
| ^^ immutable borrow occurs here
LL |
LL | *y += 1;
| ------- mutable borrow later used here
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
--> $DIR/two-phase-activation-sharing-interference.rs:37:13
|
LL | let y = &mut x;
| ------ mutable borrow occurs here
LL | let z = &x;
| ^^ immutable borrow occurs here
LL |
LL | *y += 1;
| ------- mutable borrow later used here
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
--> $DIR/two-phase-activation-sharing-interference.rs:47:13
|
LL | let y = &mut x;
| ------ mutable borrow occurs here
LL | let z = &x;
| ^^ immutable borrow occurs here
...
LL | *y += 1;
| ------- mutable borrow later used here
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
--> $DIR/two-phase-activation-sharing-interference.rs:56:14
|
LL | let y = &mut x;
| ------ mutable borrow occurs here
LL | let _z = &x;
| ^^ immutable borrow occurs here
LL |
LL | *y += 1;
| ------- mutable borrow later used here
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0502`.