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