2018-08-09 19:14:12 +00:00
|
|
|
error: manual implementation of an assign operation
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:7:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | a = a + 1;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^ help: replace it with: `a += 1`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::assign-op-pattern` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::assign_op_pattern)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:8:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | a = 1 + a;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^ help: replace it with: `a += 1`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:9:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | a = a - 1;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^ help: replace it with: `a -= 1`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:10:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:11:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:12:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:13:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:14:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:20:5
|
2017-06-11 02:34:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
|
|
|
2022-07-28 17:08:22 +00:00
|
|
|
error: manual implementation of an assign operation
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:24:5
|
2022-07-28 17:08:22 +00:00
|
|
|
|
|
|
|
|
LL | a = a + Wrapping(1u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `a += Wrapping(1u32)`
|
|
|
|
|
|
|
|
error: manual implementation of an assign operation
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/assign_ops.rs:26:5
|
2022-07-28 17:08:22 +00:00
|
|
|
|
|
|
|
|
LL | v[0] = v[0] + v[1];
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: replace it with: `v[0] += v[1]`
|
|
|
|
|
|
|
|
error: aborting due to 11 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|