2017-10-30 22:33:57 +00:00
|
|
|
error: missing `in` in `for` loop
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/issue-40782.rs:4:11
|
2017-10-30 22:33:57 +00:00
|
|
|
|
|
2020-07-02 05:32:12 +00:00
|
|
|
LL | for _i 0..2 {
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: try adding `in` here
|
|
|
|
|
|
|
|
|
LL | for _i in 0..2 {
|
|
|
|
| ++
|
2017-10-30 22:33:57 +00:00
|
|
|
|
2020-08-09 03:53:40 +00:00
|
|
|
error: missing `in` in `for` loop
|
|
|
|
--> $DIR/issue-40782.rs:6:12
|
|
|
|
|
|
|
|
|
LL | for _i of 0..2 {
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
help: try using `in` here instead
|
|
|
|
|
|
|
|
|
LL | for _i in 0..2 {
|
|
|
|
| ~~
|
2020-08-09 03:53:40 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2017-10-30 22:33:57 +00:00
|
|
|
|