summary refs log tree commit diff
path: root/src/test/ui/issue-45697.stderr
blob: babfc33b94582b7254e834f8e583295b8be1dabc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0506]: cannot assign to `*y.pointer` because it is borrowed (Ast)
  --> $DIR/issue-45697.rs:30: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

error[E0503]: cannot use `*y.pointer` because it was mutably borrowed (Mir)
  --> $DIR/issue-45697.rs:30:9
   |
LL |         let z = copy_borrowed_ptr(&mut y);
   |                                   ------ borrow of `y` occurs here
LL |         *y.pointer += 1;
   |         ^^^^^^^^^^^^^^^ use of borrowed `y`

error: aborting due to 2 previous errors

Some errors occurred: E0503, E0506.
For more information about an error, try `rustc --explain E0503`.