]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/explicit_counter_loop.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / explicit_counter_loop.stderr
index 023f7f299a720067c49dd119842380836caf8429..caccaee84b9b8d0519ce54a3edeb0ccb0aaceb67 100644 (file)
@@ -1,7 +1,7 @@
 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
    |
-15 |     for _v in &vec {
+LL |     for _v in &vec {
    |               ^^^^
    |
    = note: `-D clippy::explicit-counter-loop` implied by `-D warnings`
@@ -9,19 +9,19 @@ error: the variable `_index` is used as a loop counter. Consider using `for (_in
 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
    |
-21 |     for _v in &vec {
+LL |     for _v in &vec {
    |               ^^^^
 
 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
+  --> $DIR/explicit_counter_loop.rs:60:19
    |
-58 |         for ch in text.chars() {
+LL |         for ch in text.chars() {
    |                   ^^^^^^^^^^^^
 
 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
+  --> $DIR/explicit_counter_loop.rs:71:19
    |
-69 |         for ch in text.chars() {
+LL |         for ch in text.chars() {
    |                   ^^^^^^^^^^^^
 
 error: aborting due to 4 previous errors