2018-10-27 17:16:43 +00:00
|
|
|
error: the variable `_index` is used as a loop counter. Consider using `for (_index, item) in &vec.enumerate()` or similar iterators
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:6:15
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for _v in &vec {
|
2018-10-27 17:16:43 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: the variable `_index` is used as a loop counter. Consider using `for (_index, item) in &vec.enumerate()` or similar iterators
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:12:15
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for _v in &vec {
|
2018-10-27 17:16:43 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: the variable `count` is used as a loop counter. Consider using `for (count, item) in text.chars().enumerate()` or similar iterators
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:51:19
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for ch in text.chars() {
|
2018-10-27 17:16:43 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the variable `count` is used as a loop counter. Consider using `for (count, item) in text.chars().enumerate()` or similar iterators
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:62:19
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for ch in text.chars() {
|
2018-10-27 17:16:43 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|