error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:11:5 | LL | -1 % 2; | ^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function = note: `-D clippy::modulo-arithmetic` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::modulo_arithmetic)]` error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:14:5 | LL | 1 % -2; | ^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 3` --> tests/ui/modulo_arithmetic_integral_const.rs:17:5 | LL | (1 - 2) % (1 + 2); | ^^^^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `3 % -1` --> tests/ui/modulo_arithmetic_integral_const.rs:20:5 | LL | (1 + 2) % (1 - 2); | ^^^^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-35 % 300000` --> tests/ui/modulo_arithmetic_integral_const.rs:23:5 | LL | 35 * (7 - 4 * 2) % (-500 * -600); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:26:5 | LL | -1i8 % 2i8; | ^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:29:5 | LL | 1i8 % -2i8; | ^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:32:5 | LL | -1i16 % 2i16; | ^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:35:5 | LL | 1i16 % -2i16; | ^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:38:5 | LL | -1i32 % 2i32; | ^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:41:5 | LL | 1i32 % -2i32; | ^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:44:5 | LL | -1i64 % 2i64; | ^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:47:5 | LL | 1i64 % -2i64; | ^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:50:5 | LL | -1i128 % 2i128; | ^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:53:5 | LL | 1i128 % -2i128; | ^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `-1 % 2` --> tests/ui/modulo_arithmetic_integral_const.rs:56:5 | LL | -1isize % 2isize; | ^^^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: you are using modulo operator on constants with different signs: `1 % -2` --> tests/ui/modulo_arithmetic_integral_const.rs:59:5 | LL | 1isize % -2isize; | ^^^^^^^^^^^^^^^^ | = note: double check for expected result especially when interoperating with different languages = note: or consider using `rem_euclid` or similar function error: aborting due to 17 previous errors