mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
157 lines
5.9 KiB
Text
157 lines
5.9 KiB
Text
error: you are using modulo operator on types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:8:5
|
|
|
|
|
LL | a % b;
|
|
| ^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:11:5
|
|
|
|
|
LL | b % a;
|
|
| ^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:14:5
|
|
|
|
|
LL | b %= a;
|
|
| ^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:20:5
|
|
|
|
|
LL | a_i8 % b_i8;
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:23:5
|
|
|
|
|
LL | b_i8 %= a_i8;
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:29:5
|
|
|
|
|
LL | a_i16 % b_i16;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:32:5
|
|
|
|
|
LL | b_i16 %= a_i16;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:38:5
|
|
|
|
|
LL | a_i32 % b_i32;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:41:5
|
|
|
|
|
LL | b_i32 %= a_i32;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:47:5
|
|
|
|
|
LL | a_i64 % b_i64;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:50:5
|
|
|
|
|
LL | b_i64 %= a_i64;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:56:5
|
|
|
|
|
LL | a_i128 % b_i128;
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:59:5
|
|
|
|
|
LL | b_i128 %= a_i128;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:65:5
|
|
|
|
|
LL | a_isize % b_isize;
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:68:5
|
|
|
|
|
LL | b_isize %= a_isize;
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:74:5
|
|
|
|
|
LL | a % b;
|
|
| ^^^^^
|
|
|
|
|
= 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 types that might have different signs
|
|
--> tests/ui/modulo_arithmetic_integral.rs:77:5
|
|
|
|
|
LL | b %= a;
|
|
| ^^^^^^
|
|
|
|
|
= 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
|
|
|