rust/tests/ui/issues/issue-45697-1.stderr

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

27 lines
984 B
Plaintext
Raw Normal View History

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-23 00:42:32 +00:00
LL | let z = copy_borrowed_ptr(&mut y);
| ------ borrow of `y` occurs here
2018-02-23 00:42:32 +00:00
LL | *y.pointer += 1;
| ^^^^^^^^^^^^^^^ use of borrowed `y`
...
LL | *z.pointer += 1;
| --------------- borrow later used here
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
|
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
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`.