2018-08-08 12:28:26 +00:00
|
|
|
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/coerce-overloaded-autoderef.rs:9:24
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let y = borrow_mut(x);
|
|
|
|
| - first mutable borrow occurs here
|
|
|
|
LL | let z = borrow_mut(x);
|
|
|
|
| ^ second mutable borrow occurs here
|
2019-04-22 07:40:08 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop((y, z));
|
2018-09-29 10:47:47 +00:00
|
|
|
| - first borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `**x` because it is borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/coerce-overloaded-autoderef.rs:17:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let y = borrow(x);
|
|
|
|
| - borrow of `**x` occurs here
|
|
|
|
LL | let z = borrow(x);
|
|
|
|
LL | **x += 1;
|
|
|
|
| ^^^^^^^^ assignment to borrowed `**x` occurs here
|
2019-04-22 07:40:08 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop((y, z));
|
|
|
|
| - borrow later used here
|
|
|
|
|
|
|
|
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/coerce-overloaded-autoderef.rs:23:20
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | borrow_mut2(x, x);
|
2018-09-29 10:47:47 +00:00
|
|
|
| ----------- - ^ second mutable borrow occurs here
|
|
|
|
| | |
|
2018-08-08 12:28:26 +00:00
|
|
|
| | first mutable borrow occurs here
|
2018-09-29 10:47:47 +00:00
|
|
|
| first borrow later used by call
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `*x` as mutable because it is also borrowed as immutable
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/coerce-overloaded-autoderef.rs:28:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | borrow2(x, x);
|
2018-09-29 10:47:47 +00:00
|
|
|
| -------^^^^-^
|
2018-08-08 12:28:26 +00:00
|
|
|
| | |
|
|
|
|
| | immutable borrow occurs here
|
|
|
|
| mutable borrow occurs here
|
2018-09-29 10:47:47 +00:00
|
|
|
| immutable borrow later used by call
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0499, E0502, E0506.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|