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

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

11 lines
279 B
Plaintext
Raw Normal View History

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