rust/tests/ui/explicit_counter_loop.stderr

47 lines
1.7 KiB
Plaintext
Raw Normal View History

error: the variable `_index` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:6:15
|
2018-12-27 15:57:55 +00:00
LL | for _v in &vec {
| ^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
|
= note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
error: the variable `_index` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:12:15
|
2018-12-27 15:57:55 +00:00
LL | for _v in &vec {
| ^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
error: the variable `_index` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:17:15
|
LL | for _v in &mut vec {
| ^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter_mut().enumerate()`
error: the variable `_index` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:22:15
|
LL | for _v in vec {
| ^^^ help: consider using: `for (_index, _v) in vec.into_iter().enumerate()`
error: the variable `count` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:61:19
|
2018-12-27 15:57:55 +00:00
LL | for ch in text.chars() {
| ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
error: the variable `count` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:72:19
|
2018-12-27 15:57:55 +00:00
LL | for ch in text.chars() {
| ^^^^^^^^^^^^ help: consider using: `for (count, ch) in text.chars().enumerate()`
error: the variable `count` is used as a loop counter.
--> $DIR/explicit_counter_loop.rs:130:19
|
LL | for _i in 3..10 {
| ^^^^^ help: consider using: `for (count, _i) in 3..10.enumerate()`
error: aborting due to 7 previous errors