rust/tests/ui/borrowck/two-phase-allow-access-during-reservation.nll_target.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
1006 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0503]: cannot use `i` because it was mutably borrowed
2022-04-01 17:13:25 +00:00
--> $DIR/two-phase-allow-access-during-reservation.rs:26:19
2018-08-08 12:28:26 +00:00
|
LL | /*1*/ let p = &mut i; // (reservation of `i` starts here)
2023-01-15 03:06:44 +00:00
| ------ `i` is borrowed here
2022-06-08 18:07:59 +00:00
LL |
2018-08-08 12:28:26 +00:00
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
2022-04-01 17:13:25 +00:00
--> $DIR/two-phase-allow-access-during-reservation.rs:31:19
2018-08-08 12:28:26 +00:00
|
LL | /*1*/ let p = &mut i; // (reservation of `i` starts here)
2023-01-15 03:06:44 +00:00
| ------ `i` is borrowed here
2018-08-08 12:28:26 +00:00
...
LL | /*4*/ let k = i;
2018-08-08 12:28:26 +00:00
| ^ 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`.