about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/for-loop.stderr
blob: 6b94e60452a3cb266bb8000d1bbd38c78ae82c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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