2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `_index` is used as a loop counter
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:7:5
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for _v in &vec {
|
2019-10-18 00:15:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::explicit_counter_loop)]`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `_index` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:15:5
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for _v in &vec {
|
2019-10-18 00:15:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
|
2019-10-17 23:03:27 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `_index` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:21:5
|
2019-10-17 23:03:27 -05:00
|
|
|
|
|
|
|
|
LL | for _v in &mut vec {
|
2019-10-18 00:15:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter_mut().enumerate()`
|
2019-10-17 23:03:27 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `_index` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:27:5
|
2019-10-17 23:03:27 -05:00
|
|
|
|
|
|
|
|
LL | for _v in vec {
|
2019-10-18 00:15:54 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.into_iter().enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `count` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:115:9
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for ch in text.chars() {
|
2019-10-18 00:15:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `count` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:127:9
|
2018-10-27 12:16:43 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for ch in text.chars() {
|
2019-10-18 00:15:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
|
2018-10-27 12:16:43 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the variable `count` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:186:9
|
2019-03-23 01:36:48 -05:00
|
|
|
|
|
|
|
|
LL | for _i in 3..10 {
|
2019-10-18 11:11:15 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()`
|
2019-03-23 01:36:48 -05:00
|
|
|
|
2021-12-06 05:33:31 -06:00
|
|
|
error: the variable `idx_usize` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:227:9
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
|
LL | for _item in slice {
|
2022-02-10 11:40:06 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (idx_usize, _item) in slice.iter().enumerate()`
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
error: the variable `idx_u32` is used as a loop counter
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/explicit_counter_loop.rs:240:9
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
|
LL | for _item in slice {
|
2022-02-10 11:40:06 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: consider using: `for (idx_u32, _item) in (0_u32..).zip(slice.iter())`
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
|
= note: `idx_u32` is of type `u32`, making it ineligible for `Iterator::enumerate`
|
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-10-27 12:16:43 -05:00
|
|
|
|