]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/explicit_counter_loop.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / explicit_counter_loop.stderr
index 023f7f299a720067c49dd119842380836caf8429..931af46efe663f31ead53ba32bf7d1ce69efaffb 100644 (file)
@@ -1,28 +1,46 @@
-error: the variable `_index` is used as a loop counter. Consider using `for (_index, item) in &vec.enumerate()` or similar iterators
-  --> $DIR/explicit_counter_loop.rs:15:15
+error: the variable `_index` is used as a loop counter.
+  --> $DIR/explicit_counter_loop.rs:6:5
    |
-15 |     for _v in &vec {
-   |               ^^^^
+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. Consider using `for (_index, item) in &vec.enumerate()` or similar iterators
-  --> $DIR/explicit_counter_loop.rs:21:15
+error: the variable `_index` is used as a loop counter.
+  --> $DIR/explicit_counter_loop.rs:12:5
    |
-21 |     for _v in &vec {
-   |               ^^^^
+LL |     for _v in &vec {
+   |     ^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter().enumerate()`
 
-error: the variable `count` is used as a loop counter. Consider using `for (count, item) in text.chars().enumerate()` or similar iterators
-  --> $DIR/explicit_counter_loop.rs:58:19
+error: the variable `_index` is used as a loop counter.
+  --> $DIR/explicit_counter_loop.rs:17:5
    |
-58 |         for ch in text.chars() {
-   |                   ^^^^^^^^^^^^
+LL |     for _v in &mut vec {
+   |     ^^^^^^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.iter_mut().enumerate()`
 
-error: the variable `count` is used as a loop counter. Consider using `for (count, item) in text.chars().enumerate()` or similar iterators
-  --> $DIR/explicit_counter_loop.rs:69:19
+error: the variable `_index` is used as a loop counter.
+  --> $DIR/explicit_counter_loop.rs:22:5
    |
-69 |         for ch in text.chars() {
-   |                   ^^^^^^^^^^^^
+LL |     for _v in vec {
+   |     ^^^^^^^^^^^^^ help: consider using: `for (_index, _v) in vec.into_iter().enumerate()`
 
-error: aborting due to 4 previous errors
+error: the variable `count` is used as a loop counter.
+  --> $DIR/explicit_counter_loop.rs:61:9
+   |
+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:9
+   |
+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:9
+   |
+LL |         for _i in 3..10 {
+   |         ^^^^^^^^^^^^^^^ help: consider using: `for (count, _i) in (3..10).enumerate()`
+
+error: aborting due to 7 previous errors