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-1.rs:20:9
|
2018-02-06 17:37:49 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let z = copy_borrowed_ptr(&mut y);
|
2018-02-06 17:37:49 +00:00
|
|
|
| ------ borrow of `y` occurs here
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | *y.pointer += 1;
|
2018-02-06 17:37:49 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ use of borrowed `y`
|
2018-04-09 09:28:00 +00:00
|
|
|
...
|
|
|
|
LL | *z.pointer += 1;
|
|
|
|
| --------------- borrow later used here
|
2018-02-06 17:37:49 +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-1.rs:20:9
|
2018-04-09 09:28:00 +00:00
|
|
|
|
|
|
|
|
LL | let z = copy_borrowed_ptr(&mut y);
|
|
|
|
| ------ borrow of `*y.pointer` occurs here
|
|
|
|
LL | *y.pointer += 1;
|
|
|
|
| ^^^^^^^^^^^^^^^ assignment to borrowed `*y.pointer` occurs here
|
|
|
|
...
|
|
|
|
LL | *z.pointer += 1;
|
|
|
|
| --------------- borrow later used here
|
|
|
|
|
2019-05-02 22:34:15 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-02-06 17:37:49 +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`.
|