rust/tests/ui/needless_range_loop.stderr

85 lines
2.3 KiB
Plaintext
Raw Normal View History

2017-10-08 14:37:04 -05:00
error: the loop variable `i` is only used to index `ns`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:17:14
2018-10-06 11:18:06 -05:00
|
2018-12-09 23:27:19 -06:00
17 | for i in 3..10 {
2018-10-06 11:18:06 -05:00
| ^^^^^
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
2017-10-08 14:37:04 -05:00
help: consider using an iterator
2018-10-06 11:18:06 -05:00
|
2018-12-09 23:27:19 -06:00
17 | for <item> in ns.iter().take(10).skip(3) {
2018-10-06 11:18:06 -05:00
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-08 14:37:04 -05:00
error: the loop variable `i` is only used to index `ms`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:38:14
|
2018-12-09 23:27:19 -06:00
38 | for i in 0..ms.len() {
2018-01-28 22:18:11 -06:00
| ^^^^^^^^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
38 | for <item> in &mut ms {
2018-05-29 03:56:58 -05:00
| ^^^^^^ ^^^^^^^
error: the loop variable `i` is only used to index `ms`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:44:14
|
2018-12-09 23:27:19 -06:00
44 | for i in 0..ms.len() {
2018-01-28 22:18:11 -06:00
| ^^^^^^^^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
44 | for <item> in &mut ms {
2018-05-29 03:56:58 -05:00
| ^^^^^^ ^^^^^^^
error: the loop variable `i` is only used to index `vec`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:68:14
|
2018-12-09 23:27:19 -06:00
68 | for i in x..x + 4 {
| ^^^^^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
68 | for <item> in vec.iter_mut().skip(x).take(4) {
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the loop variable `i` is only used to index `vec`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:75:14
|
2018-12-09 23:27:19 -06:00
75 | for i in x..=x + 4 {
| ^^^^^^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
75 | for <item> in vec.iter_mut().skip(x).take(4 + 1) {
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the loop variable `i` is only used to index `arr`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:81:14
|
2018-12-09 23:27:19 -06:00
81 | for i in 0..3 {
| ^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
81 | for <item> in &arr {
| ^^^^^^ ^^^^
error: the loop variable `i` is only used to index `arr`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:85:14
|
2018-12-09 23:27:19 -06:00
85 | for i in 0..2 {
| ^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
85 | for <item> in arr.iter().take(2) {
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
error: the loop variable `i` is only used to index `arr`.
2018-12-09 23:27:19 -06:00
--> $DIR/needless_range_loop.rs:89:14
|
2018-12-09 23:27:19 -06:00
89 | for i in 1..3 {
| ^^^^
help: consider using an iterator
|
2018-12-09 23:27:19 -06:00
89 | for <item> in arr.iter().skip(1) {
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
error: aborting due to 8 previous errors
2018-01-16 10:06:27 -06:00