2019-12-26 12:34:55 +00:00
|
|
|
error: you are using modulo operator on constants with different signs: `-1.600 % 2.100`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:8:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | -1.6 % 2.1;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::modulo-arithmetic` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::modulo_arithmetic)]`
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
error: you are using modulo operator on constants with different signs: `1.600 % -2.100`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:11:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | 1.6 % -2.1;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on constants with different signs: `-1.200 % 3.400`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:14:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | (1.1 - 2.3) % (1.1 + 2.3);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on constants with different signs: `3.400 % -1.200`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:17:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | (1.1 + 2.3) % (1.1 - 2.3);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:24:5
|
|
|
|
|
|
|
|
|
LL | a_f16 % b_f16;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:27:5
|
|
|
|
|
|
|
|
|
LL | b_f16 % a_f16;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:30:5
|
|
|
|
|
|
|
|
|
LL | b_f16 %= a_f16;
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:37:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | a_f32 % b_f32;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:40:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | b_f32 % a_f32;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:43:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | b_f32 %= a_f32;
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:49:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | a_f64 % b_f64;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:52:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | b_f64 % a_f64;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:55:5
|
2019-12-26 12:34:55 +00:00
|
|
|
|
|
|
|
|
LL | b_f64 %= a_f64;
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
2024-06-18 17:34:49 +00:00
|
|
|
error: you are using modulo operator on types that might have different signs
|
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:61:5
|
|
|
|
|
|
|
|
|
LL | a_f128 % b_f128;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:64:5
|
|
|
|
|
|
|
|
|
LL | b_f128 % a_f128;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: you are using modulo operator on types that might have different signs
|
|
|
|
--> tests/ui/modulo_arithmetic_float.rs:67:5
|
|
|
|
|
|
|
|
|
LL | b_f128 %= a_f128;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
|
|
|
|
error: aborting due to 16 previous errors
|
2019-12-26 12:34:55 +00:00
|
|
|
|