2017-02-07 14:05:30 -06:00
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:8:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
8 | a += a + 1;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^ help: replace it with `a += 1`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:9:5
|
2017-05-10 08:52:44 -05:00
|
|
|
|
|
|
|
|
9 | a += 1 + a;
|
|
|
|
| ^^^^^^^^^^ help: replace it with `a += 1`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:10:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-10 08:52:44 -05:00
|
|
|
10 | a -= a - 1;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^ help: replace it with `a -= 1`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:11:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-10 08:52:44 -05:00
|
|
|
11 | a *= a * 99;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^ help: replace it with `a *= 99`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:12:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-10 08:52:44 -05:00
|
|
|
12 | a *= 42 * a;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^ help: replace it with `a *= 42`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:13:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-10 08:52:44 -05:00
|
|
|
13 | a /= a / 2;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^ help: replace it with `a /= 2`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:14:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-10 08:52:44 -05:00
|
|
|
14 | a %= a % 5;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^ help: replace it with `a %= 5`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2017-05-17 10:51:35 -05:00
|
|
|
--> assign_ops2.rs:15:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-10 08:52:44 -05:00
|
|
|
15 | a &= a & 1;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^ help: replace it with `a &= 1`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
= note: `-D misrefactored-assign-op` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-26 02:21:54 -05:00
|
|
|
error: aborting due to previous error(s)
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|