]> git.lizzy.rs Git - rust.git/blob - tests/ui/explicit_counter_loop.stderr
Auto merge of #4314 - chansuke:add-negation-to-is_empty, r=flip1995
[rust.git] / tests / ui / explicit_counter_loop.stderr
1 error: the variable `_index` is used as a loop counter.
2   --> $DIR/explicit_counter_loop.rs:6:15
3    |
4 LL |     for _v in &vec {
5    |               ^^^^ help: consider using: `for (_index, _v) in (&vec).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:15
11    |
12 LL |     for _v in &vec {
13    |               ^^^^ help: consider using: `for (_index, _v) in (&vec).enumerate()`
14
15 error: the variable `count` is used as a loop counter.
16   --> $DIR/explicit_counter_loop.rs:51:19
17    |
18 LL |         for ch in text.chars() {
19    |                   ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
20
21 error: the variable `count` is used as a loop counter.
22   --> $DIR/explicit_counter_loop.rs:62:19
23    |
24 LL |         for ch in text.chars() {
25    |                   ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
26
27 error: the variable `count` is used as a loop counter.
28   --> $DIR/explicit_counter_loop.rs:120:19
29    |
30 LL |         for _i in 3..10 {
31    |                   ^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()`
32
33 error: aborting due to 5 previous errors
34