rust/tests/ui/coercion/coerce-overloaded-autoderef-fail.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.6 KiB
Plaintext
Raw Normal View History

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
LL |
2018-08-08 07:28:26 -05:00
LL | drop((y, z));
| - 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
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);
| ----------- - ^ second mutable borrow occurs here
| | |
2018-08-08 07:28:26 -05:00
| | first mutable borrow occurs here
| 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-08-08 07:28:26 -05:00
| | |
| | immutable borrow occurs here
| mutable borrow occurs here
| immutable borrow later used by call
2018-08-08 07:28:26 -05:00
error: aborting due to 4 previous errors
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`.