2018-08-08 07:28:26 -05:00
|
|
|
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
2020-05-30 12:42:22 -05:00
|
|
|
--> $DIR/coerce-overloaded-autoderef-fail.rs:9:24
|
2018-08-08 07:28:26 -05: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 02:40:08 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop((y, z));
|
2018-09-29 05:47:47 -05:00
|
|
|
| - first borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `**x` because it is borrowed
|
2020-05-30 12:42:22 -05:00
|
|
|
--> $DIR/coerce-overloaded-autoderef-fail.rs:17:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y = borrow(x);
|
2023-01-14 21:06:44 -06:00
|
|
|
| - `**x` is borrowed here
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | let z = borrow(x);
|
|
|
|
LL | **x += 1;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^^^ `**x` is assigned to here but it was already borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop((y, z));
|
|
|
|
| - borrow later used here
|
|
|
|
|
|
|
|
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
2020-05-30 12:42:22 -05:00
|
|
|
--> $DIR/coerce-overloaded-autoderef-fail.rs:23:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | borrow_mut2(x, x);
|
2018-09-29 05:47:47 -05:00
|
|
|
| ----------- - ^ second mutable borrow occurs here
|
|
|
|
| | |
|
2018-08-08 07:28:26 -05:00
|
|
|
| | first mutable borrow occurs here
|
2018-09-29 05:47:47 -05:00
|
|
|
| first borrow later used by call
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `*x` as mutable because it is also borrowed as immutable
|
2020-05-30 12:42:22 -05:00
|
|
|
--> $DIR/coerce-overloaded-autoderef-fail.rs:28:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | borrow2(x, x);
|
2018-09-29 05:47:47 -05:00
|
|
|
| -------^^^^-^
|
2018-08-08 07:28:26 -05:00
|
|
|
| | |
|
|
|
|
| | immutable borrow occurs here
|
|
|
|
| mutable borrow occurs here
|
2018-09-29 05:47:47 -05:00
|
|
|
| immutable borrow later used by call
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0499, E0502, E0506.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|