mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
34 lines
943 B
Text
34 lines
943 B
Text
error: the loop variable `i` is only used to index `ns`.
|
|
--> $DIR/needless_range_loop.rs:18:14
|
|
|
|
|
18 | for i in 3..10 {
|
|
| ^^^^^
|
|
|
|
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
|
|
help: consider using an iterator
|
|
|
|
|
18 | for <item> in ns.iter().take(10).skip(3) {
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
|
--> $DIR/needless_range_loop.rs:39:14
|
|
|
|
|
39 | for i in 0..ms.len() {
|
|
| ^^^^^^^^^^^
|
|
help: consider using an iterator
|
|
|
|
|
39 | for <item> in &mut ms {
|
|
| ^^^^^^ ^^^^^^^
|
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
|
--> $DIR/needless_range_loop.rs:45:14
|
|
|
|
|
45 | for i in 0..ms.len() {
|
|
| ^^^^^^^^^^^
|
|
help: consider using an iterator
|
|
|
|
|
45 | for <item> in &mut ms {
|
|
| ^^^^^^ ^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|