about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/modulo_arithmetic_float.stderr
blob: 91b5c80ce9f4ebcd1e2e6748c812ecc75a72d935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
error: you are using modulo operator on constants with different signs: `-1.600 % 2.100`
  --> tests/ui/modulo_arithmetic_float.rs:8:5
   |
LL |     -1.6 % 2.1;
   |     ^^^^^^^^^^
   |
   = note: double check for expected result especially when interoperating with different languages
   = 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.600 % -2.100`
  --> tests/ui/modulo_arithmetic_float.rs:11: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`
  --> tests/ui/modulo_arithmetic_float.rs:14: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`
  --> tests/ui/modulo_arithmetic_float.rs:17: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
  --> tests/ui/modulo_arithmetic_float.rs:23: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:26: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:29: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:35: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
  --> tests/ui/modulo_arithmetic_float.rs:38: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
  --> tests/ui/modulo_arithmetic_float.rs:41: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
  --> tests/ui/modulo_arithmetic_float.rs:46: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
  --> tests/ui/modulo_arithmetic_float.rs:49: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
  --> tests/ui/modulo_arithmetic_float.rs:52: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
  --> tests/ui/modulo_arithmetic_float.rs:57: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:60: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:63: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