2017-02-07 14:05:30 -06:00
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:14:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
14 | a += a + 1;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::misrefactored-assign-op` implied by `-D warnings`
|
2018-01-30 07:58:38 -06:00
|
|
|
help: Did you mean a = a + 1 or a = a + a + 1? Consider replacing it with
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
14 | a += 1;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
14 | a = a + a + 1;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:15:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
15 | a += 1 + a;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^
|
2018-01-30 07:58:38 -06:00
|
|
|
help: Did you mean a = a + 1 or a = a + 1 + a? Consider replacing it with
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
15 | a += 1;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
15 | a = a + 1 + a;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:16:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | a -= a - 1;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
help: Did you mean a = a - 1 or a = a - (a - 1)? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | a -= 1;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | a = a - (a - 1);
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:17:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
17 | a *= a * 99;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
help: Did you mean a = a * 99 or a = a * a * 99? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
17 | a *= 99;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
17 | a = a * a * 99;
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:18:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
18 | a *= 42 * a;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
help: Did you mean a = a * 42 or a = a * 42 * a? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
18 | a *= 42;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
18 | a = a * 42 * a;
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:19:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
19 | a /= a / 2;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
help: Did you mean a = a / 2 or a = a / (a / 2)? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
19 | a /= 2;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
19 | a = a / (a / 2);
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:20:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
20 | a %= a % 5;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
help: Did you mean a = a % 5 or a = a % (a % 5)? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
20 | a %= 5;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
20 | a = a % (a % 5);
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:21:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
21 | a &= a & 1;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
help: Did you mean a = a & 1 or a = a & a & 1? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
21 | a &= 1;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
21 | a = a & a & 1;
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
2018-01-30 07:58:38 -06:00
|
|
|
|
|
|
|
error: variable appears on both sides of an assignment operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:22:5
|
2018-01-30 07:58:38 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
22 | a *= a * a;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
help: Did you mean a = a * a or a = a * a * a? Consider replacing it with
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
22 | a *= a;
|
2018-01-30 07:58:38 -06:00
|
|
|
| ^^^^^^
|
2018-01-30 10:45:35 -06:00
|
|
|
help: or
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
22 | a = a * a * a;
|
2018-01-30 10:45:35 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-10-10 10:05:16 -05:00
|
|
|
error: manual implementation of an assign operation
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/assign_ops2.rs:59:5
|
2018-10-10 10:05:16 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
59 | buf = buf + cows.clone();
|
2018-10-10 10:05:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `buf += cows.clone()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::assign-op-pattern` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|