bc4f9b848d
Give a special message when the later use is from a call. Use the span of the callee instead of the whole expression. For conflicting borrow messages say that the later use is of the first borrow.
16 lines
527 B
Plaintext
16 lines
527 B
Plaintext
error[E0499]: cannot borrow `y.0` as mutable more than once at a time
|
|
--> $DIR/borrowck-anon-fields-variant.rs:44:14
|
|
|
|
|
LL | Foo::Y(ref mut a, _) => a,
|
|
| --------- first mutable borrow occurs here
|
|
...
|
|
LL | Foo::Y(ref mut b, _) => b, //~ ERROR cannot borrow
|
|
| ^^^^^^^^^ 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`.
|