2019-03-27 23:51:57 +00:00
|
|
|
error: the variable `_index` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:6:5
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for _v in &vec {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
|
|
|
|
|
2019-03-27 23:51:57 +00:00
|
|
|
error: the variable `_index` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:12:5
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for _v in &vec {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
|
2019-10-18 04:03:27 +00:00
|
|
|
|
|
|
|
error: the variable `_index` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:17:5
|
2019-10-18 04:03:27 +00:00
|
|
|
|
|
|
|
|
LL | for _v in &mut vec {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter_mut().enumerate()`
|
2019-10-18 04:03:27 +00:00
|
|
|
|
|
|
|
error: the variable `_index` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:22:5
|
2019-10-18 04:03:27 +00:00
|
|
|
|
|
|
|
|
LL | for _v in vec {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.into_iter().enumerate()`
|
2018-10-27 17:16:43 +00:00
|
|
|
|
2019-03-27 23:51:57 +00:00
|
|
|
error: the variable `count` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:61:9
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for ch in text.chars() {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
|
2018-10-27 17:16:43 +00:00
|
|
|
|
2019-03-27 23:51:57 +00:00
|
|
|
error: the variable `count` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:72:9
|
2018-10-27 17:16:43 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for ch in text.chars() {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
|
2018-10-27 17:16:43 +00:00
|
|
|
|
2019-03-27 23:51:57 +00:00
|
|
|
error: the variable `count` is used as a loop counter.
|
2019-10-18 05:15:54 +00:00
|
|
|
--> $DIR/explicit_counter_loop.rs:130:9
|
2019-03-23 06:36:48 +00:00
|
|
|
|
|
|
|
|
LL | for _i in 3..10 {
|
2019-10-18 05:15:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using: `for (count, _i) in 3..10.enumerate()`
|
2019-03-23 06:36:48 +00:00
|
|
|
|
2019-10-18 04:03:27 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2018-10-27 17:16:43 +00:00
|
|
|
|