rust-clippy/tests/ui/needless_range_loop2.stderr

92 lines
2.3 KiB
Text
Raw Normal View History

error: the loop variable `i` is only used to index `ns`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:10:14
|
LL | for i in 3..10 {
| ^^^^^
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
help: consider using an iterator
|
LL | for <item> in ns.iter().take(10).skip(3) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `ms`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:31:14
|
LL | for i in 0..ms.len() {
| ^^^^^^^^^^^
|
help: consider using an iterator
|
LL | for <item> in &mut ms {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `ms`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:37:14
|
LL | for i in 0..ms.len() {
| ^^^^^^^^^^^
|
help: consider using an iterator
|
LL | for <item> in &mut ms {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `vec`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:61:14
|
LL | for i in x..x + 4 {
| ^^^^^^^^
|
help: consider using an iterator
|
LL | for <item> in vec.iter_mut().skip(x).take(4) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `vec`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:68:14
|
LL | for i in x..=x + 4 {
| ^^^^^^^^^
|
help: consider using an iterator
|
LL | for <item> in vec.iter_mut().skip(x).take(4 + 1) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `arr`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:74:14
|
LL | for i in 0..3 {
| ^^^^
|
help: consider using an iterator
|
LL | for <item> in &arr {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `arr`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:78:14
|
LL | for i in 0..2 {
| ^^^^
|
help: consider using an iterator
|
LL | for <item> in arr.iter().take(2) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~
2020-01-24 08:21:50 +00:00
error: the loop variable `i` is only used to index `arr`
2020-01-24 08:21:50 +00:00
--> $DIR/needless_range_loop2.rs:82:14
|
LL | for i in 1..3 {
| ^^^^
|
help: consider using an iterator
|
LL | for <item> in arr.iter().skip(1) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~
2020-01-24 08:21:50 +00:00
error: aborting due to 8 previous errors