]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_range_loop2.stderr
`assertions_on_result_states` fix suggestion when `assert!` not in a statement
[rust.git] / tests / ui / needless_range_loop2.stderr
index 2e1f0fd0299b4cfb168785cc34b2bc11cfdf4110..1e6ec5e667aa0839f716e1d8802ed2b726290153 100644 (file)
@@ -8,7 +8,7 @@ LL |     for i in 3..10 {
 help: consider using an iterator
    |
 LL |     for <item> in ns.iter().take(10).skip(3) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^
+   |         ~~~~~~    ~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 error: the loop variable `i` is only used to index `ms`
   --> $DIR/needless_range_loop2.rs:31:14
@@ -19,7 +19,7 @@ LL |     for i in 0..ms.len() {
 help: consider using an iterator
    |
 LL |     for <item> in &mut ms {
-   |         ^^^^^^    ^^^^^^^
+   |         ~~~~~~    ~~~~~~~
 
 error: the loop variable `i` is only used to index `ms`
   --> $DIR/needless_range_loop2.rs:37:14
@@ -30,7 +30,7 @@ LL |     for i in 0..ms.len() {
 help: consider using an iterator
    |
 LL |     for <item> in &mut ms {
-   |         ^^^^^^    ^^^^^^^
+   |         ~~~~~~    ~~~~~~~
 
 error: the loop variable `i` is only used to index `vec`
   --> $DIR/needless_range_loop2.rs:61:14
@@ -41,7 +41,7 @@ LL |     for i in x..x + 4 {
 help: consider using an iterator
    |
 LL |     for <item> in vec.iter_mut().skip(x).take(4) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   |         ~~~~~~    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 error: the loop variable `i` is only used to index `vec`
   --> $DIR/needless_range_loop2.rs:68:14
@@ -52,7 +52,7 @@ LL |     for i in x..=x + 4 {
 help: consider using an iterator
    |
 LL |     for <item> in vec.iter_mut().skip(x).take(4 + 1) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   |         ~~~~~~    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 error: the loop variable `i` is only used to index `arr`
   --> $DIR/needless_range_loop2.rs:74:14
@@ -63,7 +63,7 @@ LL |     for i in 0..3 {
 help: consider using an iterator
    |
 LL |     for <item> in &arr {
-   |         ^^^^^^    ^^^^
+   |         ~~~~~~    ~~~~
 
 error: the loop variable `i` is only used to index `arr`
   --> $DIR/needless_range_loop2.rs:78:14
@@ -74,7 +74,7 @@ LL |     for i in 0..2 {
 help: consider using an iterator
    |
 LL |     for <item> in arr.iter().take(2) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^
+   |         ~~~~~~    ~~~~~~~~~~~~~~~~~~
 
 error: the loop variable `i` is only used to index `arr`
   --> $DIR/needless_range_loop2.rs:82:14
@@ -85,7 +85,7 @@ LL |     for i in 1..3 {
 help: consider using an iterator
    |
 LL |     for <item> in arr.iter().skip(1) {
-   |         ^^^^^^    ^^^^^^^^^^^^^^^^^^
+   |         ~~~~~~    ~~~~~~~~~~~~~~~~~~
 
 error: aborting due to 8 previous errors