rust/tests/ui/nll/issue-46589.stderr

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

16 lines
611 B
Plaintext
Raw Normal View History

error[E0499]: cannot borrow `**other` as mutable more than once at a time
--> $DIR/issue-46589.rs:23:21
|
LL | *other = match (*other).get_self() {
2021-09-16 15:01:22 -05:00
| ------------------- first mutable borrow occurs here
LL | Some(s) => s,
LL | None => (*other).new_self()
2021-09-16 15:01:22 -05:00
| ^^^^^^^^^^^^^^^^^^^
| |
| second mutable borrow occurs here
| first borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0499`.