rust/tests/ui/rfcs/rfc-2008-non-exhaustive/borrowck-non-exhaustive.stderr

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

15 lines
407 B
Plaintext
Raw Normal View History

error[E0503]: cannot use `x` because it was mutably borrowed
--> $DIR/borrowck-non-exhaustive.rs:12:11
|
LL | let y = &mut x;
2023-01-14 21:06:44 -06:00
| ------ `x` is borrowed here
LL | match x {
| ^ use of borrowed `x`
...
LL | drop(y);
| - borrow later used here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0503`.