summaryrefslogtreecommitdiff
path: root/tests/ui/borrowck/borrowck-anon-fields-struct.stderr
blob: 7a959fb6ec62f621948bf9241c809a0bdc767cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0499]: cannot borrow `y.0` as mutable more than once at a time
  --> $DIR/borrowck-anon-fields-struct.rs:29:11
   |
LL |         Y(ref mut a, _) => a
   |           --------- first mutable borrow occurs here
...
LL |         Y(ref mut b, _) => b
   |           ^^^^^^^^^ second mutable borrow occurs here
...
LL |     *a += 1;
   |     ------- first borrow later used here

error: aborting due to previous error

For more information about this error, try `rustc --explain E0499`.