blob: eb6be74c8805551077c01632eb19a63169184be4 [file]
error: the variable `_index` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:7:5
|
LL | for _v in &vec {
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
|
= note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::explicit_counter_loop)]`
error: the variable `_index` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:15:5
|
LL | for _v in &vec {
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
error: the variable `_index` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:22:5
|
LL | for _v in &mut vec {
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter_mut().enumerate()`
error: the variable `_index` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:29:5
|
LL | for _v in vec {
| ^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.into_iter().enumerate()`
error: the variable `_index` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:38:5
|
LL | for _v in &vec {
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in (1..).zip(vec.iter())`
error: the variable `count` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:118:9
|
LL | for ch in text.chars() {
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
error: the variable `count` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:131:9
|
LL | for ch in text.chars() {
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
error: the variable `count` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:191:9
|
LL | for _i in 3..10 {
| ^^^^^^^^^^^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()`
error: the variable `idx_usize` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:233:9
|
LL | for _item in slice {
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (idx_usize, _item) in slice.iter().enumerate()`
error: the variable `idx_u32` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:247:9
|
LL | for _item in slice {
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (idx_u32, _item) in (0_u32..).zip(slice.iter())`
|
= note: `idx_u32` is of type `u32`, making it ineligible for `Iterator::enumerate`
error: the variable `_index` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:293:9
|
LL | 'label: for v in vec {
| ^^^^^^^^^^^^^^^^^^^^ help: consider using: `'label: for (_index, v) in vec.into_iter().enumerate()`
error: the variable `i` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:307:5
|
LL | for item in &v {
| ^^^^^^^^^^^^^^ help: consider using: `for (i, item) in (1..).zip(v.iter())`
error: the variable `j` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:314:5
|
LL | for item in &v {
| ^^^^^^^^^^^^^^ help: consider using: `for (j, item) in (s + 1..).zip(v.iter())`
error: the variable `base` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:339:5
|
LL | for _ in 0..MAX {
| ^^^^^^^^^^^^^^^ help: consider using: `for base in (100..).take(MAX)`
error: the variable `base` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:347:5
|
LL | for _ in nums {
| ^^^^^^^^^^^^^ help: consider using: `for (base, _) in (100..).zip(nums.into_iter())`
error: the variable `base` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:354:5
|
LL | for _ in 0..=MAX {
| ^^^^^^^^^^^^^^^^ help: consider using: `for (base, _) in (100..).zip((0..=MAX))`
error: the variable `base` is used as a loop counter
--> tests/ui/explicit_counter_loop.rs:361:5
|
LL | for _ in 5..MAX {
| ^^^^^^^^^^^^^^^ help: consider using: `for (base, _) in (100..).zip((5..MAX))`
error: aborting due to 17 previous errors