rust/tests/ui/parser/misspelled-keywords/while-loop.stderr

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

14 lines
339 B
Plaintext
Raw Permalink Normal View History

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