2017-10-30 22:33:57 +00:00
|
|
|
error: missing `in` in `for` loop
|
2025-02-04 17:02:37 +05:30
|
|
|
--> $DIR/for-loop-missing-in.rs:4:11
|
2017-10-30 22:33:57 +00:00
|
|
|
|
|
2020-07-02 14:32:12 +09: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-08 20:53:40 -07:00
|
|
|
error: missing `in` in `for` loop
|
2025-02-04 17:02:37 +05:30
|
|
|
--> $DIR/for-loop-missing-in.rs:6:12
|
2020-08-08 20:53:40 -07:00
|
|
|
|
|
|
|
|
LL | for _i of 0..2 {
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
help: try using `in` here instead
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - for _i of 0..2 {
|
|
|
|
LL + for _i in 0..2 {
|
|
|
|
|
|
2020-08-08 20:53:40 -07:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2017-10-30 22:33:57 +00:00
|
|
|
|