os-rust/src/test/ui/borrowck/borrowck-anon-fields-tuple.nll.stderr
Vadim Petrochenkov c1cfacfb13 Update NLL tests
2019-03-11 23:18:35 +03:00

15 lines
483 B
Text

error[E0499]: cannot borrow `y.0` as mutable more than once at a time
--> $DIR/borrowck-anon-fields-tuple.rs:27:10
|
LL | (ref mut a, _) => a
| --------- first mutable borrow occurs here
...
LL | (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`.