2017-10-08 19:37:04 +00:00
|
|
|
error: the loop variable `i` is only used to index `ns`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:8:14
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in 3..10 {
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
|
2017-10-08 19:37:04 +00:00
|
|
|
help: consider using an iterator
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in ns.iter().take(10).skip(3) {
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-08 19:37:04 +00:00
|
|
|
|
2017-11-07 13:41:54 +00:00
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:29:14
|
2017-11-07 13:41:54 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in 0..ms.len() {
|
2018-01-29 04:18:11 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-11-07 13:41:54 +00:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in &mut ms {
|
2018-05-29 08:56:58 +00:00
|
|
|
| ^^^^^^ ^^^^^^^
|
2017-11-07 13:41:54 +00:00
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:35:14
|
2017-11-07 13:41:54 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in 0..ms.len() {
|
2018-01-29 04:18:11 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-11-07 13:41:54 +00:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in &mut ms {
|
2018-05-29 08:56:58 +00:00
|
|
|
| ^^^^^^ ^^^^^^^
|
2017-11-07 13:41:54 +00:00
|
|
|
|
2018-10-15 03:07:21 +00:00
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:59:14
|
2018-10-15 03:07:21 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in x..x + 4 {
|
2018-10-15 03:07:21 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in vec.iter_mut().skip(x).take(4) {
|
2018-10-15 03:07:21 +00:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:66:14
|
2018-10-15 03:07:21 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in x..=x + 4 {
|
2018-10-15 03:07:21 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in vec.iter_mut().skip(x).take(4 + 1) {
|
2018-10-15 03:07:21 +00:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-19 20:34:16 +00:00
|
|
|
error: the loop variable `i` is only used to index `arr`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:72:14
|
2018-10-19 20:34:16 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in 0..3 {
|
2018-10-19 20:34:16 +00:00
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in &arr {
|
2018-10-19 20:34:16 +00:00
|
|
|
| ^^^^^^ ^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `arr`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:76:14
|
2018-10-19 20:34:16 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in 0..2 {
|
2018-10-19 20:34:16 +00:00
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in arr.iter().take(2) {
|
2018-10-19 20:34:16 +00:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `arr`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/needless_range_loop.rs:80:14
|
2018-10-19 20:34:16 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for i in 1..3 {
|
2018-10-19 20:34:16 +00:00
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for <item> in arr.iter().skip(1) {
|
2018-10-19 20:34:16 +00:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|