about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2019-05-24 08:19:51 +0200
committerManish Goregaokar <manishsmail@gmail.com>2019-06-07 07:59:39 -0700
commit082cfa79902d1aac5e251a0c2018c0537bcb9be8 (patch)
tree1bc2be2cfffec13b8211048d7bf48f51b80c4053
parent60a609acaed3bf2b3ec6ab995bccf0f03bc26060 (diff)
downloadrust-082cfa79902d1aac5e251a0c2018c0537bcb9be8.tar.gz
rust-082cfa79902d1aac5e251a0c2018c0537bcb9be8.zip
[Backported] Rustup to https://github.com/rust-lang/rust/pull/59545
-rw-r--r--tests/ui/for_loop.stderr26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/ui/for_loop.stderr b/tests/ui/for_loop.stderr
index a18eb20774d..14082e8790b 100644
--- a/tests/ui/for_loop.stderr
+++ b/tests/ui/for_loop.stderr
@@ -66,7 +66,7 @@ error: it is more concise to loop over references to containers instead of using
   --> $DIR/for_loop.rs:107:15
    |
 LL |     for _v in vec.iter() {}
-   |               ^^^^^^^^^^
+   |               ^^^^^^^^^^ help: to write this more concisely, try: `&vec`
    |
    = note: `-D clippy::explicit-iter-loop` implied by `-D warnings`
 
@@ -74,13 +74,13 @@ error: it is more concise to loop over references to containers instead of using
   --> $DIR/for_loop.rs:109:15
    |
 LL |     for _v in vec.iter_mut() {}
-   |               ^^^^^^^^^^^^^^
+   |               ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut vec`
 
 error: it is more concise to loop over containers instead of using explicit iteration methods`
   --> $DIR/for_loop.rs:112:15
    |
 LL |     for _v in out_vec.into_iter() {}
-   |               ^^^^^^^^^^^^^^^^^^^
+   |               ^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `out_vec`
    |
    = note: `-D clippy::explicit-into-iter-loop` implied by `-D warnings`
 
@@ -88,61 +88,61 @@ error: it is more concise to loop over references to containers instead of using
   --> $DIR/for_loop.rs:115:15
    |
 LL |     for _v in array.into_iter() {}
-   |               ^^^^^^^^^^^^^^^^^
+   |               ^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&array`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:120:15
    |
 LL |     for _v in [1, 2, 3].iter() {}
-   |               ^^^^^^^^^^^^^^^^
+   |               ^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[1, 2, 3]`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:124:15
    |
 LL |     for _v in [0; 32].iter() {}
-   |               ^^^^^^^^^^^^^^
+   |               ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[0; 32]`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:129:15
    |
 LL |     for _v in ll.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&ll`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:132:15
    |
 LL |     for _v in vd.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&vd`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:135:15
    |
 LL |     for _v in bh.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&bh`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:138:15
    |
 LL |     for _v in hm.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&hm`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:141:15
    |
 LL |     for _v in bt.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&bt`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:144:15
    |
 LL |     for _v in hs.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&hs`
 
 error: it is more concise to loop over references to containers instead of using explicit iteration methods
   --> $DIR/for_loop.rs:147:15
    |
 LL |     for _v in bs.iter() {}
-   |               ^^^^^^^^^
+   |               ^^^^^^^^^ help: to write this more concisely, try: `&bs`
 
 error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
   --> $DIR/for_loop.rs:149:15