mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
11 lines
293 B
Plaintext
11 lines
293 B
Plaintext
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
|
|
|