]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_range_loop.stderr
iterate List by value
[rust.git] / tests / ui / needless_range_loop.stderr
index 03a469dfa722b1a71ff546e3c46f42f1e13f7d94..c50c4931fb4cc8b68a438de09803e46e0c2015ec 100644 (file)
-error: the loop variable `i` is only used to index `ns`.
-  --> $DIR/needless_range_loop.rs:17:14
+error: the loop variable `i` is only used to index `vec`.
+  --> $DIR/needless_range_loop.rs:10:14
    |
-17 |     for i in 3..10 {
-   |              ^^^^^
+LL |     for i in 0..vec.len() {
+   |              ^^^^^^^^^^^^
    |
    = note: `-D clippy::needless-range-loop` implied by `-D warnings`
 help: consider using an iterator
    |
-17 |     for <item> in ns.iter().take(10).skip(3) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     for <item> in &vec {
+   |         ^^^^^^    ^^^^
 
-error: the loop variable `i` is only used to index `ms`.
-  --> $DIR/needless_range_loop.rs:38:14
+error: the loop variable `i` is only used to index `vec`.
+  --> $DIR/needless_range_loop.rs:19:14
+   |
+LL |     for i in 0..vec.len() {
+   |              ^^^^^^^^^^^^
    |
-38 |     for i in 0..ms.len() {
-   |              ^^^^^^^^^^^
 help: consider using an iterator
    |
-38 |     for <item> in &mut ms {
+LL |     for <item> in &vec {
+   |         ^^^^^^    ^^^^
+
+error: the loop variable `j` is only used to index `STATIC`.
+  --> $DIR/needless_range_loop.rs:24:14
+   |
+LL |     for j in 0..4 {
+   |              ^^^^
+   |
+help: consider using an iterator
+   |
+LL |     for <item> in &STATIC {
    |         ^^^^^^    ^^^^^^^
 
-error: the loop variable `i` is only used to index `ms`.
+error: the loop variable `j` is only used to index `CONST`.
+  --> $DIR/needless_range_loop.rs:28:14
+   |
+LL |     for j in 0..4 {
+   |              ^^^^
+   |
+help: consider using an iterator
+   |
+LL |     for <item> in &CONST {
+   |         ^^^^^^    ^^^^^^
+
+error: the loop variable `i` is used to index `vec`
+  --> $DIR/needless_range_loop.rs:32:14
+   |
+LL |     for i in 0..vec.len() {
+   |              ^^^^^^^^^^^^
+   |
+help: consider using an iterator
+   |
+LL |     for (i, <item>) in vec.iter().enumerate() {
+   |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^
+
+error: the loop variable `i` is only used to index `vec2`.
+  --> $DIR/needless_range_loop.rs:40:14
+   |
+LL |     for i in 0..vec.len() {
+   |              ^^^^^^^^^^^^
+   |
+help: consider using an iterator
+   |
+LL |     for <item> in vec2.iter().take(vec.len()) {
+   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: the loop variable `i` is only used to index `vec`.
   --> $DIR/needless_range_loop.rs:44:14
    |
-44 |     for i in 0..ms.len() {
+LL |     for i in 5..vec.len() {
+   |              ^^^^^^^^^^^^
+   |
+help: consider using an iterator
+   |
+LL |     for <item> in vec.iter().skip(5) {
+   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^
+
+error: the loop variable `i` is only used to index `vec`.
+  --> $DIR/needless_range_loop.rs:48:14
+   |
+LL |     for i in 0..MAX_LEN {
+   |              ^^^^^^^^^^
+   |
+help: consider using an iterator
+   |
+LL |     for <item> in vec.iter().take(MAX_LEN) {
+   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: the loop variable `i` is only used to index `vec`.
+  --> $DIR/needless_range_loop.rs:52:14
+   |
+LL |     for i in 0..=MAX_LEN {
    |              ^^^^^^^^^^^
+   |
 help: consider using an iterator
    |
-44 |     for <item> in &mut ms {
-   |         ^^^^^^    ^^^^^^^
+LL |     for <item> in vec.iter().take(MAX_LEN + 1) {
+   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: the loop variable `i` is only used to index `vec`.
-  --> $DIR/needless_range_loop.rs:68:14
+  --> $DIR/needless_range_loop.rs:56:14
+   |
+LL |     for i in 5..10 {
+   |              ^^^^^
    |
-68 |     for i in x..x + 4 {
-   |              ^^^^^^^^
 help: consider using an iterator
    |
-68 |     for <item> in vec.iter_mut().skip(x).take(4) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     for <item> in vec.iter().take(10).skip(5) {
+   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: the loop variable `i` is only used to index `vec`.
-  --> $DIR/needless_range_loop.rs:75:14
+  --> $DIR/needless_range_loop.rs:60:14
+   |
+LL |     for i in 5..=10 {
+   |              ^^^^^^
    |
-75 |     for i in x..=x + 4 {
-   |              ^^^^^^^^^
 help: consider using an iterator
    |
-75 |     for <item> in vec.iter_mut().skip(x).take(4 + 1) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     for <item> in vec.iter().take(10 + 1).skip(5) {
+   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the loop variable `i` is only used to index `arr`.
-  --> $DIR/needless_range_loop.rs:81:14
+error: the loop variable `i` is used to index `vec`
+  --> $DIR/needless_range_loop.rs:64:14
+   |
+LL |     for i in 5..vec.len() {
+   |              ^^^^^^^^^^^^
    |
-81 |     for i in 0..3 {
-   |              ^^^^
 help: consider using an iterator
    |
-81 |     for <item> in &arr {
-   |         ^^^^^^    ^^^^
+LL |     for (i, <item>) in vec.iter().enumerate().skip(5) {
+   |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the loop variable `i` is only used to index `arr`.
-  --> $DIR/needless_range_loop.rs:85:14
+error: the loop variable `i` is used to index `vec`
+  --> $DIR/needless_range_loop.rs:68:14
+   |
+LL |     for i in 5..10 {
+   |              ^^^^^
    |
-85 |     for i in 0..2 {
-   |              ^^^^
 help: consider using an iterator
    |
-85 |     for <item> in arr.iter().take(2) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^
+LL |     for (i, <item>) in vec.iter().enumerate().take(10).skip(5) {
+   |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the loop variable `i` is only used to index `arr`.
-  --> $DIR/needless_range_loop.rs:89:14
+error: the loop variable `i` is used to index `vec`
+  --> $DIR/needless_range_loop.rs:73:14
+   |
+LL |     for i in 0..vec.len() {
+   |              ^^^^^^^^^^^^
    |
-89 |     for i in 1..3 {
-   |              ^^^^
 help: consider using an iterator
    |
-89 |     for <item> in arr.iter().skip(1) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^
+LL |     for (i, <item>) in vec.iter_mut().enumerate() {
+   |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: aborting due to 8 previous errors
+error: aborting due to 14 previous errors