rust/tests/ui/parser/keyword-match-as-identifier.stderr

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

14 lines
327 B
Plaintext
Raw Normal View History

error: expected identifier, found keyword `match`
--> $DIR/keyword-match-as-identifier.rs:4:9
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let match = "foo";
| ^^^^^ expected identifier, found keyword
|
help: escape `match` to use it as an identifier
|
LL | let r#match = "foo";
| ++
2018-10-20 15:36:17 -05:00
error: aborting due to previous error