summary refs log tree commit diff
path: root/src/test/ui/issues/issue-45697.stderr
blob: 5085d36febac38672d5a363af4db26e850907b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
error[E0506]: cannot assign to `*y.pointer` because it is borrowed (Ast)
  --> $DIR/issue-45697.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

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

error[E0506]: cannot assign to `*y.pointer` because it is borrowed (Mir)
  --> $DIR/issue-45697.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

error: aborting due to 3 previous errors

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