rust-clippy/tests/ui/arithmetic_side_effects.stderr

23 lines
568 B
Text
Raw Normal View History

2022-09-07 13:00:45 +00:00
error: arithmetic detected
2022-09-08 15:04:55 +00:00
--> $DIR/arithmetic_side_effects.rs:50:21
2022-09-07 13:00:45 +00:00
|
LL | let mut _a = 1; _a += 1;
| ^^^^^^^
|
2022-09-08 15:04:55 +00:00
= note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`
2022-09-07 13:00:45 +00:00
error: arithmetic detected
2022-09-08 15:04:55 +00:00
--> $DIR/arithmetic_side_effects.rs:52:26
2022-09-07 13:00:45 +00:00
|
LL | let mut _b = 1; _b = _b + 1;
| ^^^^^^
error: arithmetic detected
2022-09-08 15:04:55 +00:00
--> $DIR/arithmetic_side_effects.rs:54:26
2022-09-07 13:00:45 +00:00
|
LL | let mut _c = 1; _c = 1 + _c;
| ^^^^^^
error: aborting due to 3 previous errors