rust/tests/ui/parser/if-in-in.stderr

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

11 lines
234 B
Plaintext
Raw Normal View History

2018-09-19 23:23:21 +00:00
error: expected iterable, found keyword `in`
2020-07-02 05:32:12 +00:00
--> $DIR/if-in-in.rs:4:14
2018-09-19 23:23:21 +00:00
|
2019-03-09 12:03:44 +00:00
LL | for i in in 1..2 {
2018-09-19 23:23:21 +00:00
| ---^^
| |
| help: remove the duplicated `in`
error: aborting due to 1 previous error
2018-09-19 23:23:21 +00:00