clean tests/ui/assign_ops2

Cleaning the empty lines for clarity.
This commit is contained in:
Luis de Bethencourt 2017-05-10 14:52:44 +01:00
parent e18a250139
commit ac4ce0b2fe
2 changed files with 29 additions and 45 deletions

View File

@ -6,29 +6,13 @@
fn main() {
let mut a = 5;
a += a + 1;
a += 1 + a;
a -= a - 1;
a *= a * 99;
a *= 42 * a;
a /= a / 2;
a %= a % 5;
a &= a & 1;
a -= 1 - a;
a /= 5 / a;
a %= 42 % a;

View File

@ -10,46 +10,46 @@ note: lint level defined here
5 | #[deny(misrefactored_assign_op)]
| ^^^^^^^^^^^^^^^^^^^^^^^
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:9:5
|
9 | a += 1 + a;
| ^^^^^^^^^^ help: replace it with `a += 1`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:10:5
|
10 | a -= a - 1;
| ^^^^^^^^^^ help: replace it with `a -= 1`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:11:5
|
11 | a += 1 + a;
| ^^^^^^^^^^ help: replace it with `a += 1`
11 | a *= a * 99;
| ^^^^^^^^^^^ help: replace it with `a *= 99`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:12:5
|
12 | a *= 42 * a;
| ^^^^^^^^^^^ help: replace it with `a *= 42`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:13:5
|
13 | a /= a / 2;
| ^^^^^^^^^^ help: replace it with `a /= 2`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:14:5
|
14 | a -= a - 1;
| ^^^^^^^^^^ help: replace it with `a -= 1`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:17:5
|
17 | a *= a * 99;
| ^^^^^^^^^^^ help: replace it with `a *= 99`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:20:5
|
20 | a *= 42 * a;
| ^^^^^^^^^^^ help: replace it with `a *= 42`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:23:5
|
23 | a /= a / 2;
| ^^^^^^^^^^ help: replace it with `a /= 2`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:26:5
|
26 | a %= a % 5;
14 | a %= a % 5;
| ^^^^^^^^^^ help: replace it with `a %= 5`
error: variable appears on both sides of an assignment operation
--> $DIR/assign_ops2.rs:29:5
--> $DIR/assign_ops2.rs:15:5
|
29 | a &= a & 1;
15 | a &= a & 1;
| ^^^^^^^^^^ help: replace it with `a &= 1`
error: aborting due to 8 previous errors