Files
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.

16 lines
329 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
|
= note: `mut` may be followed by `variable` and `variable @ pattern`
help: remove the `mut` prefix
|
LL - let mut _ = 0;
LL + let _ = 0;
|
2018-10-20 23:36:17 +03:00
error: aborting due to 1 previous error
2018-10-20 23:36:17 +03:00