mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
e097fca4df
Move `iterator_step_by_zero` into `methods` since it applies to all iterators and not just ranges. Simplify the code while doing so.
10 lines
291 B
Text
10 lines
291 B
Text
error: It is more idiomatic to use v1.iter().enumerate()
|
|
--> $DIR/range.rs:5:14
|
|
|
|
|
LL | let _x = v1.iter().zip(0..v1.len());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::range-zip-with-len` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|