]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_range_loop.stderr
Update changed ui tests
[rust.git] / tests / ui / needless_range_loop.stderr
index e2c3e18e8219cb74a37b13fd3be65e74ee6016b4..7fb4571e0c3fbee46bff8854236685bdd46a56e7 100644 (file)
@@ -10,5 +10,32 @@ error: the loop variable `i` is only used to index `ns`.
 help: consider using an iterator
    |
 8  |     for <item> in ns.iter().take(10).skip(3) {
-   |         ^^^^^^
+   |
+
+error: the loop variable `i` is only used to index `ms`.
+  --> $DIR/needless_range_loop.rs:29:5
+   |
+29 | /     for i in 0..ms.len() {
+30 | |         ms[i] *= 2;
+31 | |     }
+   | |_____^
+help: consider using an iterator
+   |
+29 |     for <item> in &mut ms {
+   |
+
+error: the loop variable `i` is only used to index `ms`.
+  --> $DIR/needless_range_loop.rs:35:5
+   |
+35 | /     for i in 0..ms.len() {
+36 | |         let x = &mut ms[i];
+37 | |         *x *= 2;
+38 | |     }
+   | |_____^
+help: consider using an iterator
+   |
+35 |     for <item> in &mut ms {
+   |
+
+error: aborting due to 3 previous errors