]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/assign_ops2.stderr
iterate List by value
[rust.git] / tests / ui / assign_ops2.stderr
index 99983c0d054e4fbf8a35f44928d5a1cab47f14d3..70b15d18a568b878ea39cb6c2efe9869b1285828 100644 (file)
@@ -1,11 +1,11 @@
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:14:5
+  --> $DIR/assign_ops2.rs:5:5
    |
 LL |     a += a + 1;
    |     ^^^^^^^^^^
    |
    = note: `-D clippy::misrefactored-assign-op` implied by `-D warnings`
-help: Did you mean a = a + 1 or a = a + a + 1? Consider replacing it with
+help: Did you mean `a = a + 1` or `a = a + a + 1`? Consider replacing it with
    |
 LL |     a += 1;
    |     ^^^^^^
@@ -15,11 +15,12 @@ LL |     a = a + a + 1;
    |     ^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:15:5
+  --> $DIR/assign_ops2.rs:6:5
    |
 LL |     a += 1 + a;
    |     ^^^^^^^^^^
-help: Did you mean a = a + 1 or a = a + 1 + a? Consider replacing it with
+   |
+help: Did you mean `a = a + 1` or `a = a + 1 + a`? Consider replacing it with
    |
 LL |     a += 1;
    |     ^^^^^^
@@ -29,11 +30,12 @@ LL |     a = a + 1 + a;
    |     ^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:16:5
+  --> $DIR/assign_ops2.rs:7:5
    |
 LL |     a -= a - 1;
    |     ^^^^^^^^^^
-help: Did you mean a = a - 1 or a = a - (a - 1)? Consider replacing it with
+   |
+help: Did you mean `a = a - 1` or `a = a - (a - 1)`? Consider replacing it with
    |
 LL |     a -= 1;
    |     ^^^^^^
@@ -43,11 +45,12 @@ LL |     a = a - (a - 1);
    |     ^^^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:17:5
+  --> $DIR/assign_ops2.rs:8:5
    |
 LL |     a *= a * 99;
    |     ^^^^^^^^^^^
-help: Did you mean a = a * 99 or a = a * a * 99? Consider replacing it with
+   |
+help: Did you mean `a = a * 99` or `a = a * a * 99`? Consider replacing it with
    |
 LL |     a *= 99;
    |     ^^^^^^^
@@ -57,11 +60,12 @@ LL |     a = a * a * 99;
    |     ^^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:18:5
+  --> $DIR/assign_ops2.rs:9:5
    |
 LL |     a *= 42 * a;
    |     ^^^^^^^^^^^
-help: Did you mean a = a * 42 or a = a * 42 * a? Consider replacing it with
+   |
+help: Did you mean `a = a * 42` or `a = a * 42 * a`? Consider replacing it with
    |
 LL |     a *= 42;
    |     ^^^^^^^
@@ -71,11 +75,12 @@ LL |     a = a * 42 * a;
    |     ^^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:19:5
+  --> $DIR/assign_ops2.rs:10:5
    |
 LL |     a /= a / 2;
    |     ^^^^^^^^^^
-help: Did you mean a = a / 2 or a = a / (a / 2)? Consider replacing it with
+   |
+help: Did you mean `a = a / 2` or `a = a / (a / 2)`? Consider replacing it with
    |
 LL |     a /= 2;
    |     ^^^^^^
@@ -85,11 +90,12 @@ LL |     a = a / (a / 2);
    |     ^^^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:20:5
+  --> $DIR/assign_ops2.rs:11:5
    |
 LL |     a %= a % 5;
    |     ^^^^^^^^^^
-help: Did you mean a = a % 5 or a = a % (a % 5)? Consider replacing it with
+   |
+help: Did you mean `a = a % 5` or `a = a % (a % 5)`? Consider replacing it with
    |
 LL |     a %= 5;
    |     ^^^^^^
@@ -99,11 +105,12 @@ LL |     a = a % (a % 5);
    |     ^^^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:21:5
+  --> $DIR/assign_ops2.rs:12:5
    |
 LL |     a &= a & 1;
    |     ^^^^^^^^^^
-help: Did you mean a = a & 1 or a = a & a & 1? Consider replacing it with
+   |
+help: Did you mean `a = a & 1` or `a = a & a & 1`? Consider replacing it with
    |
 LL |     a &= 1;
    |     ^^^^^^
@@ -113,11 +120,12 @@ LL |     a = a & a & 1;
    |     ^^^^^^^^^^^^^
 
 error: variable appears on both sides of an assignment operation
-  --> $DIR/assign_ops2.rs:22:5
+  --> $DIR/assign_ops2.rs:13:5
    |
 LL |     a *= a * a;
    |     ^^^^^^^^^^
-help: Did you mean a = a * a or a = a * a * a? Consider replacing it with
+   |
+help: Did you mean `a = a * a` or `a = a * a * a`? Consider replacing it with
    |
 LL |     a *= a;
    |     ^^^^^^
@@ -127,7 +135,7 @@ LL |     a = a * a * a;
    |     ^^^^^^^^^^^^^
 
 error: manual implementation of an assign operation
-  --> $DIR/assign_ops2.rs:59:5
+  --> $DIR/assign_ops2.rs:50:5
    |
 LL |     buf = buf + cows.clone();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `buf += cows.clone()`