summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/modulo_arithmetic_float.stderr
blob: 97844aaaa7598d2587fae9e02cfdbf2dc56ed471 (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
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