|
1 |
| -error: the variable `_index` is used as a loop counter. Consider using `for (_index, _v) in (&vec).enumerate()` or similar iterators |
| 1 | +error: the variable `_index` is used as a loop counter. |
2 | 2 | --> $DIR/explicit_counter_loop.rs:6:15
|
3 | 3 | |
|
4 | 4 | LL | for _v in &vec {
|
5 |
| - | ^^^^ |
| 5 | + | ^^^^ help: consider using: `for (_index, _v) in (&vec).enumerate()` |
6 | 6 | |
|
7 | 7 | = note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
|
8 | 8 |
|
9 |
| -error: the variable `_index` is used as a loop counter. Consider using `for (_index, _v) in (&vec).enumerate()` or similar iterators |
| 9 | +error: the variable `_index` is used as a loop counter. |
10 | 10 | --> $DIR/explicit_counter_loop.rs:12:15
|
11 | 11 | |
|
12 | 12 | LL | for _v in &vec {
|
13 |
| - | ^^^^ |
| 13 | + | ^^^^ help: consider using: `for (_index, _v) in (&vec).enumerate()` |
14 | 14 |
|
15 |
| -error: the variable `count` is used as a loop counter. Consider using `for (count, ch) in text.chars().enumerate()` or similar iterators |
| 15 | +error: the variable `count` is used as a loop counter. |
16 | 16 | --> $DIR/explicit_counter_loop.rs:51:19
|
17 | 17 | |
|
18 | 18 | LL | for ch in text.chars() {
|
19 |
| - | ^^^^^^^^^^^^ |
| 19 | + | ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()` |
20 | 20 |
|
21 |
| -error: the variable `count` is used as a loop counter. Consider using `for (count, ch) in text.chars().enumerate()` or similar iterators |
| 21 | +error: the variable `count` is used as a loop counter. |
22 | 22 | --> $DIR/explicit_counter_loop.rs:62:19
|
23 | 23 | |
|
24 | 24 | LL | for ch in text.chars() {
|
25 |
| - | ^^^^^^^^^^^^ |
| 25 | + | ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()` |
26 | 26 |
|
27 |
| -error: the variable `count` is used as a loop counter. Consider using `for (count, _i) in (3..10).enumerate()` or similar iterators |
| 27 | +error: the variable `count` is used as a loop counter. |
28 | 28 | --> $DIR/explicit_counter_loop.rs:120:19
|
29 | 29 | |
|
30 | 30 | LL | for _i in 3..10 {
|
31 |
| - | ^^^^^ |
| 31 | + | ^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()` |
32 | 32 |
|
33 | 33 | error: aborting due to 5 previous errors
|
34 | 34 |
|
0 commit comments