rust/tests/ui/borrowck/two-phase-allow-access-during-reservation.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

28 lines
1,006 B
Plaintext

error[E0503]: cannot use `i` because it was mutably borrowed
--> $DIR/two-phase-allow-access-during-reservation.rs:27:19
|
LL | /*1*/ let p = &mut i; // (reservation of `i` starts here)
| ------ `i` is borrowed here
LL |
LL | /*2*/ let j = i; // OK: `i` is only reserved here
| ^ use of borrowed `i`
...
LL | /*3*/ *p += 1; // (mutable borrow of `i` starts here, since `p` is used)
| ------- borrow later used here
error[E0503]: cannot use `i` because it was mutably borrowed
--> $DIR/two-phase-allow-access-during-reservation.rs:32:19
|
LL | /*1*/ let p = &mut i; // (reservation of `i` starts here)
| ------ `i` is borrowed here
...
LL | /*4*/ let k = i;
| ^ use of borrowed `i`
...
LL | /*5*/ *p += 1;
| ------- borrow later used here
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0503`.