rust/tests/ui/assign_ops2.stderr

53 lines
1.5 KiB
Text
Raw Normal View History

error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:8:5
|
2017-02-08 14:58:07 +01:00
8 | a += a + 1;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: replace it with: `a += 1`
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:9:5
|
9 | a += 1 + a;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: replace it with: `a += 1`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:10:5
|
10 | a -= a - 1;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: replace it with: `a -= 1`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:11:5
|
11 | a *= a * 99;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^ help: replace it with: `a *= 99`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:12:5
|
12 | a *= 42 * a;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^ help: replace it with: `a *= 42`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:13:5
|
13 | a /= a / 2;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: replace it with: `a /= 2`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:14:5
|
14 | a %= a % 5;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: replace it with: `a %= 5`
error: variable appears on both sides of an assignment operation
2017-08-01 17:54:21 +02:00
--> $DIR/assign_ops2.rs:15:5
|
15 | a &= a & 1;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: replace it with: `a &= 1`
2018-01-16 17:06:27 +01:00
error: aborting due to 8 previous errors