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