]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/assign_ops.stderr
iterate List by value
[rust.git] / tests / ui / assign_ops.stderr
index 20ed51334ab6e6e485b83bfa477f682c7a9fef7c..3486bd8da4d07ed98b2ec55cf49949508d3c9603 100644 (file)
@@ -1,57 +1,57 @@
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:17:5
+  --> $DIR/assign_ops.rs:7:5
    |
-17 |     a = a + 1;
+LL |     a = a + 1;
    |     ^^^^^^^^^ help: replace it with: `a += 1`
    |
    = note: `-D clippy::assign-op-pattern` implied by `-D warnings`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:18:5
+  --> $DIR/assign_ops.rs:8:5
    |
-18 |     a = 1 + a;
+LL |     a = 1 + a;
    |     ^^^^^^^^^ help: replace it with: `a += 1`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:19:5
+  --> $DIR/assign_ops.rs:9:5
    |
-19 |     a = a - 1;
+LL |     a = a - 1;
    |     ^^^^^^^^^ help: replace it with: `a -= 1`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:20:5
+  --> $DIR/assign_ops.rs:10:5
    |
-20 |     a = a * 99;
+LL |     a = a * 99;
    |     ^^^^^^^^^^ help: replace it with: `a *= 99`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:21:5
+  --> $DIR/assign_ops.rs:11:5
    |
-21 |     a = 42 * a;
+LL |     a = 42 * a;
    |     ^^^^^^^^^^ help: replace it with: `a *= 42`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:22:5
+  --> $DIR/assign_ops.rs:12:5
    |
-22 |     a = a / 2;
+LL |     a = a / 2;
    |     ^^^^^^^^^ help: replace it with: `a /= 2`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:23:5
+  --> $DIR/assign_ops.rs:13:5
    |
-23 |     a = a % 5;
+LL |     a = a % 5;
    |     ^^^^^^^^^ help: replace it with: `a %= 5`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:24:5
+  --> $DIR/assign_ops.rs:14:5
    |
-24 |     a = a & 1;
+LL |     a = a & 1;
    |     ^^^^^^^^^ help: replace it with: `a &= 1`
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops.rs:30:5
+  --> $DIR/assign_ops.rs:20:5
    |
-30 |     s = s + "bla";
+LL |     s = s + "bla";
    |     ^^^^^^^^^^^^^ help: replace it with: `s += "bla"`
 
 error: aborting due to 9 previous errors