rust/src/test/ui/issue-45697-1.stderr

21 lines
806 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `*y.pointer` because it is borrowed (Ast)
--> $DIR/issue-45697-1.rs:30:9
|
2018-02-22 18:42:32 -06:00
LL | let z = copy_borrowed_ptr(&mut y);
| - borrow of `*y.pointer` occurs here
2018-02-22 18:42:32 -06:00
LL | *y.pointer += 1;
| ^^^^^^^^^^^^^^^ assignment to borrowed `*y.pointer` occurs here
error[E0503]: cannot use `*y.pointer` because it was mutably borrowed (Mir)
--> $DIR/issue-45697-1.rs:30:9
|
2018-02-22 18:42:32 -06:00
LL | let z = copy_borrowed_ptr(&mut y);
| ------ borrow of `y` occurs here
2018-02-22 18:42:32 -06:00
LL | *y.pointer += 1;
| ^^^^^^^^^^^^^^^ use of borrowed `y`
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
Some errors occurred: E0503, E0506.
For more information about an error, try `rustc --explain E0503`.