2017-10-08 14:37:04 -05:00
|
|
|
error: the loop variable `i` is only used to index `ns`.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:18:14
|
|
|
|
|
|
|
|
|
18 | for i in 3..10 {
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
|
2017-10-08 14:37:04 -05:00
|
|
|
help: consider using an iterator
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
|
|
|
18 | for <item> in ns.iter().take(10).skip(3) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-08 14:37:04 -05:00
|
|
|
|
2017-11-07 07:41:54 -06:00
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:39:14
|
2017-11-07 07:41:54 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
39 | for i in 0..ms.len() {
|
2018-01-28 22:18:11 -06:00
|
|
|
| ^^^^^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
39 | for <item> in &mut ms {
|
2018-05-29 03:56:58 -05:00
|
|
|
| ^^^^^^ ^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:45:14
|
2017-11-07 07:41:54 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
45 | for i in 0..ms.len() {
|
2018-01-28 22:18:11 -06:00
|
|
|
| ^^^^^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
45 | for <item> in &mut ms {
|
2018-05-29 03:56:58 -05:00
|
|
|
| ^^^^^^ ^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
|
2018-10-14 22:07:21 -05:00
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:69:14
|
|
|
|
|
|
|
|
|
69 | for i in x..x + 4 {
|
|
|
|
| ^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
69 | for <item> in vec.iter_mut().skip(x).take(4) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:76:14
|
|
|
|
|
|
|
|
|
76 | for i in x..=x + 4 {
|
|
|
|
| ^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
76 | for <item> in vec.iter_mut().skip(x).take(4 + 1) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|