mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
84 lines
2.9 KiB
Plaintext
84 lines
2.9 KiB
Plaintext
error: you are using modulo operator on constants with different signs: `-1.600 % 2.100`
|
|
--> $DIR/modulo_arithmetic_float.rs:6:5
|
|
|
|
|
LL | -1.6 % 2.1;
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::modulo-arithmetic` implied by `-D warnings`
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
error: you are using modulo operator on constants with different signs: `1.600 % -2.100`
|
|
--> $DIR/modulo_arithmetic_float.rs:7:5
|
|
|
|
|
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`
|
|
--> $DIR/modulo_arithmetic_float.rs:8:5
|
|
|
|
|
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`
|
|
--> $DIR/modulo_arithmetic_float.rs:9:5
|
|
|
|
|
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
|
|
--> $DIR/modulo_arithmetic_float.rs:14:5
|
|
|
|
|
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
|
|
--> $DIR/modulo_arithmetic_float.rs:15:5
|
|
|
|
|
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
|
|
--> $DIR/modulo_arithmetic_float.rs:16:5
|
|
|
|
|
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
|
|
--> $DIR/modulo_arithmetic_float.rs:20:5
|
|
|
|
|
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
|
|
--> $DIR/modulo_arithmetic_float.rs:21:5
|
|
|
|
|
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
|
|
--> $DIR/modulo_arithmetic_float.rs:22:5
|
|
|
|
|
LL | b_f64 %= a_f64;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= note: double check for expected result especially when interoperating with different languages
|
|
|
|
error: aborting due to 10 previous errors
|
|
|