blob: 6b94e60452a3cb266bb8000d1bbd38c78ae82c5f [file] [log] [blame]
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `i`
--> $DIR/for-loop.rs:2:10
|
LL | form i in 1..10 {}
| ^ expected one of 8 possible tokens
|
help: there is a keyword `for` with a similar name
|
LL - form i in 1..10 {}
LL + for i in 1..10 {}
|
error: aborting due to 1 previous error