rust/tests/ui/assign_ops.stderr

59 lines
1.5 KiB
Text
Raw Normal View History

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