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