blob: de730ce1030f24bbab5699e3a644dc2acce470a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0503]: cannot use `x` because it was mutably borrowed
--> $DIR/borrowck-non-exhaustive.rs:12:11
|
LL | let y = &mut x;
| ------ borrow of `x` occurs here
LL | match x {
| ^ use of borrowed `x`
...
LL | drop(y);
| - borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0503`.
|