2019-05-02 17:34:15 -05:00
|
|
|
error[E0503]: cannot use `*y.pointer` because it was mutably borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-45697-1.rs:20:9
|
2018-02-06 11:37:49 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let z = copy_borrowed_ptr(&mut y);
|
2023-01-14 21:06:44 -06:00
|
|
|
| ------ `y` is borrowed here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | *y.pointer += 1;
|
2018-02-06 11:37:49 -06:00
|
|
|
| ^^^^^^^^^^^^^^^ use of borrowed `y`
|
2018-04-09 04:28:00 -05:00
|
|
|
...
|
|
|
|
LL | *z.pointer += 1;
|
|
|
|
| --------------- borrow later used here
|
2018-02-06 11:37:49 -06:00
|
|
|
|
2019-05-02 17:34:15 -05:00
|
|
|
error[E0506]: cannot assign to `*y.pointer` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-45697-1.rs:20:9
|
2018-04-09 04:28:00 -05:00
|
|
|
|
|
|
|
|
LL | let z = copy_borrowed_ptr(&mut y);
|
2023-01-14 21:06:44 -06:00
|
|
|
| ------ `*y.pointer` is borrowed here
|
2018-04-09 04:28:00 -05:00
|
|
|
LL | *y.pointer += 1;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^^^^^^^^^^ `*y.pointer` is assigned to here but it was already borrowed
|
2018-04-09 04:28:00 -05:00
|
|
|
...
|
|
|
|
LL | *z.pointer += 1;
|
|
|
|
| --------------- borrow later used here
|
|
|
|
|
2019-05-02 17:34:15 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-02-06 11:37:49 -06:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0503, E0506.
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about an error, try `rustc --explain E0503`.
|