2019-03-27 18:51:57 -05:00
|
|
|
error: the variable `_index` is used as a loop counter.
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/explicit_counter_loop.rs:6:15
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for _v in &vec {
|
2019-03-27 18:51:57 -05:00
|
|
|
| ^^^^ help: consider using: `for (_index, _v) in (&vec).enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
|
|
|
|
|
2019-03-27 18:51:57 -05:00
|
|
|
error: the variable `_index` is used as a loop counter.
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/explicit_counter_loop.rs:12:15
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for _v in &vec {
|
2019-03-27 18:51:57 -05:00
|
|
|
| ^^^^ help: consider using: `for (_index, _v) in (&vec).enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2019-03-27 18:51:57 -05:00
|
|
|
error: the variable `count` is used as a loop counter.
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/explicit_counter_loop.rs:51:19
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for ch in text.chars() {
|
2019-03-27 18:51:57 -05:00
|
|
|
| ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2019-03-27 18:51:57 -05:00
|
|
|
error: the variable `count` is used as a loop counter.
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/explicit_counter_loop.rs:62:19
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for ch in text.chars() {
|
2019-03-27 18:51:57 -05:00
|
|
|
| ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2019-03-27 18:51:57 -05:00
|
|
|
error: the variable `count` is used as a loop counter.
|
2019-03-23 01:36:48 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:120:19
|
|
|
|
|
|
|
|
|
LL | for _i in 3..10 {
|
2019-03-27 18:51:57 -05:00
|
|
|
| ^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()`
|
2019-03-23 01:36:48 -05:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-10-27 12:16:43 -05:00
|
|
|
|