2018-08-09 19:14:12 +00:00
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:17:5
|
|
|
|
|
|
|
|
|
17 | a = a + 1;
|
|
|
|
| ^^^^^^^^^ help: replace it with: `a += 1`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::assign-op-pattern` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:18:5
|
|
|
|
|
|
|
|
|
18 | a = 1 + a;
|
|
|
|
| ^^^^^^^^^ help: replace it with: `a += 1`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:19:5
|
|
|
|
|
|
|
|
|
19 | a = a - 1;
|
|
|
|
| ^^^^^^^^^ help: replace it with: `a -= 1`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:20:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
20 | a = a * 99;
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^^^^^ help: replace it with: `a *= 99`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:21:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
21 | a = 42 * a;
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^^^^^ help: replace it with: `a *= 42`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
22 | a = a / 2;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^ help: replace it with: `a /= 2`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:23:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
23 | a = a % 5;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^ help: replace it with: `a %= 5`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:24:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
24 | a = a & 1;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^ help: replace it with: `a &= 1`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-06-11 02:34:47 +00:00
|
|
|
error: manual implementation of an assign operation
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/assign_ops.rs:30:5
|
2017-06-11 02:34:47 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
30 | s = s + "bla";
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: replace it with: `s += "bla"`
|
2017-06-11 02:34:47 +00:00
|
|
|
|
2018-08-09 19:14:12 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|