]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/explicit_counter_loop.stderr
Merge commit 'a5d597637dcb78dc73f93561ce474f23d4177c35' into clippyup
[rust.git] / src / tools / clippy / tests / ui / explicit_counter_loop.stderr
1 error: the variable `_index` is used as a loop counter
2   --> $DIR/explicit_counter_loop.rs:6:5
3    |
4 LL |     for _v in &vec {
5    |     ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
6    |
7    = note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
8
9 error: the variable `_index` is used as a loop counter
10   --> $DIR/explicit_counter_loop.rs:12:5
11    |
12 LL |     for _v in &vec {
13    |     ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
14
15 error: the variable `_index` is used as a loop counter
16   --> $DIR/explicit_counter_loop.rs:17:5
17    |
18 LL |     for _v in &mut vec {
19    |     ^^^^^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter_mut().enumerate()`
20
21 error: the variable `_index` is used as a loop counter
22   --> $DIR/explicit_counter_loop.rs:22:5
23    |
24 LL |     for _v in vec {
25    |     ^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.into_iter().enumerate()`
26
27 error: the variable `count` is used as a loop counter
28   --> $DIR/explicit_counter_loop.rs:61:9
29    |
30 LL |         for ch in text.chars() {
31    |         ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
32
33 error: the variable `count` is used as a loop counter
34   --> $DIR/explicit_counter_loop.rs:72:9
35    |
36 LL |         for ch in text.chars() {
37    |         ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
38
39 error: the variable `count` is used as a loop counter
40   --> $DIR/explicit_counter_loop.rs:130:9
41    |
42 LL |         for _i in 3..10 {
43    |         ^^^^^^^^^^^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()`
44
45 error: the variable `idx_usize` is used as a loop counter
46   --> $DIR/explicit_counter_loop.rs:170:9
47    |
48 LL |         for _item in slice {
49    |         ^^^^^^^^^^^^^^^^^^ help: consider using: `for (idx_usize, _item) in slice.into_iter().enumerate()`
50
51 error: the variable `idx_u32` is used as a loop counter
52   --> $DIR/explicit_counter_loop.rs:182:9
53    |
54 LL |         for _item in slice {
55    |         ^^^^^^^^^^^^^^^^^^ help: consider using: `for (idx_u32, _item) in (0_u32..).zip(slice.into_iter())`
56    |
57    = note: `idx_u32` is of type `u32`, making it ineligible for `Iterator::enumerate`
58
59 error: aborting due to 9 previous errors
60