2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `ns`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:11:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
LL | for i in 3..10 {
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_range_loop)]`
|
2020-01-24 02:21:50 -06:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in ns.iter().take(10).skip(3) {
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `ms`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:34:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..ms.len() {
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &mut ms {
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `ms`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:41:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..ms.len() {
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &mut ms {
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `vec`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:66:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
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 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `vec`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:74:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
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 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `arr`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:81:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..3 {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &arr {
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `arr`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:86:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..2 {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in arr.iter().take(2) {
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: the loop variable `i` is only used to index `arr`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/needless_range_loop2.rs:91:14
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
|
LL | for i in 1..3 {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in arr.iter().skip(1) {
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~
|
2020-01-24 02:21:50 -06:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|