83 lines
2.3 KiB
Plaintext
83 lines
2.3 KiB
Plaintext
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:80:5
|
|
|
|
|
LL | _n += 1;
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:81:5
|
|
|
|
|
LL | _n -= 1;
|
|
| ^^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:82:5
|
|
|
|
|
LL | _n /= 0;
|
|
| ^^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:83:5
|
|
|
|
|
LL | _n %= 0;
|
|
| ^^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:84:5
|
|
|
|
|
LL | _n *= 2;
|
|
| ^^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:87:10
|
|
|
|
|
LL | _n = _n + 1;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:88:10
|
|
|
|
|
LL | _n = 1 + _n;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:89:10
|
|
|
|
|
LL | _n = _n - 1;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:90:10
|
|
|
|
|
LL | _n = 1 - _n;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:91:10
|
|
|
|
|
LL | _n = _n / 0;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:92:10
|
|
|
|
|
LL | _n = _n % 0;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:93:10
|
|
|
|
|
LL | _n = _n * 2;
|
|
| ^^^^^^
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
|
--> $DIR/arithmetic_side_effects.rs:94:10
|
|
|
|
|
LL | _n = 2 * _n;
|
|
| ^^^^^^
|
|
|
|
error: aborting due to 13 previous errors
|
|
|