summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-anon-fields-tuple.stderr
blob: d05d1c31f9d6799150e71addf6875416791ad44f (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-tuple.rs:37:10
   |
LL |         (ref mut a, _) => a
   |          --------- first mutable borrow occurs here
...
LL |         (ref mut b, _) => b //~ ERROR cannot borrow
   |          ^^^^^^^^^ second mutable borrow occurs here
...
LL | }
   | - first borrow ends here

error: aborting due to previous error

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