blob: d53302449a8067c8f293d82776d1cdc6d93c9fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
error: `mut` must be followed by a named binding
--> $DIR/issue-32501.rs:7:9
|
LL | let mut _ = 0;
| ^^^^^ help: remove the `mut` prefix: `_`
|
= note: `mut` may be followed by `variable` and `variable @ pattern`
error: aborting due to previous error
|