summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/borrowck-assign-to-andmut-in-borrowed-loc.stderr
blob: 8c0a8efcc1828548bfc810f2e36b5fe0a32be634 (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
error[E0503]: cannot use `*y.pointer` because it was mutably borrowed
  --> $DIR/borrowck-assign-to-andmut-in-borrowed-loc.rs:18:9
   |
LL |         let z = copy_borrowed_ptr(&mut y);
   |                                   ------ `y` is borrowed 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
  --> $DIR/borrowck-assign-to-andmut-in-borrowed-loc.rs:18:9
   |
LL |         let z = copy_borrowed_ptr(&mut y);
   |                                   ------ `*y.pointer` is borrowed here
LL |         *y.pointer += 1;
   |         ^^^^^^^^^^^^^^^ `*y.pointer` is assigned to here but it was already borrowed
...
LL |         *z.pointer += 1;
   |         --------------- borrow later used here

error: aborting due to 2 previous errors

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