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