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

15 lines
270 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 {
| ^^
|
help: remove the duplicated `in`
|
LL - for i in in 1..2 {
LL + for i in 1..2 {
|
2018-09-19 23:23:21 +00:00
error: aborting due to 1 previous error
2018-09-19 23:23:21 +00:00