mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
error: the variable `_index` is used as a loop counter. Consider using `for (_index, item) in &vec.enumerate()` or similar iterators
|
|
--> $DIR/explicit_counter_loop.rs:6:15
|
|
|
|
|
LL | for _v in &vec {
|
|
| ^^^^
|
|
|
|
|
= 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
|
|
--> $DIR/explicit_counter_loop.rs:12:15
|
|
|
|
|
LL | for _v in &vec {
|
|
| ^^^^
|
|
|
|
error: the variable `count` is used as a loop counter. Consider using `for (count, item) in text.chars().enumerate()` or similar iterators
|
|
--> $DIR/explicit_counter_loop.rs:51:19
|
|
|
|
|
LL | for ch in text.chars() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: the variable `count` is used as a loop counter. Consider using `for (count, item) in text.chars().enumerate()` or similar iterators
|
|
--> $DIR/explicit_counter_loop.rs:62:19
|
|
|
|
|
LL | for ch in text.chars() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|