rust/tests/ui/needless_range_loop.stderr

35 lines
933 B
Text
Raw Normal View History

2017-10-08 21:37:04 +02:00
error: the loop variable `i` is only used to index `ns`.
2018-01-29 05:18:11 +01:00
--> $DIR/needless_range_loop.rs:8:14
|
8 | for i in 3..10 {
| ^^^^^
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
2017-10-08 21:37:04 +02:00
help: consider using an iterator
2018-01-29 05:18:11 +01:00
|
8 | for <item> in ns.iter().take(10).skip(3) {
2018-05-29 10:56:58 +02:00
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-08 21:37:04 +02:00
error: the loop variable `i` is only used to index `ms`.
2018-01-29 05:18:11 +01:00
--> $DIR/needless_range_loop.rs:29:14
|
2018-01-29 05:18:11 +01:00
29 | for i in 0..ms.len() {
| ^^^^^^^^^^^
help: consider using an iterator
|
29 | for <item> in &mut ms {
2018-05-29 10:56:58 +02:00
| ^^^^^^ ^^^^^^^
error: the loop variable `i` is only used to index `ms`.
2018-01-29 05:18:11 +01:00
--> $DIR/needless_range_loop.rs:35:14
|
2018-01-29 05:18:11 +01:00
35 | for i in 0..ms.len() {
| ^^^^^^^^^^^
help: consider using an iterator
|
35 | for <item> in &mut ms {
2018-05-29 10:56:58 +02:00
| ^^^^^^ ^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 3 previous errors