rust/tests/ui/parser/misspelled-keywords/match.stderr

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

14 lines
328 B
Plaintext
Raw Normal View History

2024-09-01 21:27:43 -05:00
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `a`
--> $DIR/match.rs:3:12
|
LL | matche a {}
| ^ expected one of 8 possible tokens
|
help: there is a keyword `match` with a similar name
|
LL | match a {}
| ~~~~~
2024-09-01 21:27:43 -05:00
error: aborting due to 1 previous error