rust/tests/ui/needless_range_loop2.stderr
Esteban Küber 3a0b1ae59d Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00

100 lines
2.4 KiB
Text

error: the loop variable `i` is only used to index `ns`
--> tests/ui/needless_range_loop2.rs:11:14
|
LL | for i in 3..10 {
| ^^^^^
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_range_loop)]`
help: consider using an iterator
|
LL - for i in 3..10 {
LL + for <item> in ns.iter().take(10).skip(3) {
|
error: the loop variable `i` is only used to index `ms`
--> tests/ui/needless_range_loop2.rs:34:14
|
LL | for i in 0..ms.len() {
| ^^^^^^^^^^^
|
help: consider using an iterator
|
LL - for i in 0..ms.len() {
LL + for <item> in &mut ms {
|
error: the loop variable `i` is only used to index `ms`
--> tests/ui/needless_range_loop2.rs:41:14
|
LL | for i in 0..ms.len() {
| ^^^^^^^^^^^
|
help: consider using an iterator
|
LL - for i in 0..ms.len() {
LL + for <item> in &mut ms {
|
error: the loop variable `i` is only used to index `vec`
--> tests/ui/needless_range_loop2.rs:66:14
|
LL | for i in x..x + 4 {
| ^^^^^^^^
|
help: consider using an iterator
|
LL - for i in x..x + 4 {
LL + for <item> in vec.iter_mut().skip(x).take(4) {
|
error: the loop variable `i` is only used to index `vec`
--> tests/ui/needless_range_loop2.rs:74:14
|
LL | for i in x..=x + 4 {
| ^^^^^^^^^
|
help: consider using an iterator
|
LL - for i in x..=x + 4 {
LL + for <item> in vec.iter_mut().skip(x).take(4 + 1) {
|
error: the loop variable `i` is only used to index `arr`
--> tests/ui/needless_range_loop2.rs:81:14
|
LL | for i in 0..3 {
| ^^^^
|
help: consider using an iterator
|
LL - for i in 0..3 {
LL + for <item> in &arr {
|
error: the loop variable `i` is only used to index `arr`
--> tests/ui/needless_range_loop2.rs:86:14
|
LL | for i in 0..2 {
| ^^^^
|
help: consider using an iterator
|
LL - for i in 0..2 {
LL + for <item> in arr.iter().take(2) {
|
error: the loop variable `i` is only used to index `arr`
--> tests/ui/needless_range_loop2.rs:91:14
|
LL | for i in 1..3 {
| ^^^^
|
help: consider using an iterator
|
LL - for i in 1..3 {
LL + for <item> in arr.iter().skip(1) {
|
error: aborting due to 8 previous errors