rust/tests/ui/parser/issues/issue-32501.stderr

11 lines
279 B
Plaintext
Raw Normal View History

2019-08-27 16:44:44 -05:00
error: `mut` must be followed by a named binding
--> $DIR/issue-32501.rs:7:9
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let mut _ = 0;
2019-08-27 16:44:44 -05:00
| ^^^^^ help: remove the `mut` prefix: `_`
|
= note: `mut` may be followed by `variable` and `variable @ pattern`
2018-10-20 15:36:17 -05:00
error: aborting due to previous error