|
1 |
| -error: float has excessive precision |
2 |
| - --> $DIR/excessive_precision.rs:15:26 |
3 |
| - | |
4 |
| -LL | const BAD32_1: f32 = 0.123_456_789_f32; |
5 |
| - | ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79_f32` |
6 |
| - | |
7 |
| - = note: `-D clippy::excessive-precision` implied by `-D warnings` |
8 |
| - |
9 | 1 | error: float has excessive precision
|
10 | 2 | --> $DIR/excessive_precision.rs:16:26
|
11 | 3 | |
|
12 |
| -LL | const BAD32_2: f32 = 0.123_456_789; |
13 |
| - | ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79` |
14 |
| - |
15 |
| -error: float has excessive precision |
16 |
| - --> $DIR/excessive_precision.rs:17:26 |
17 |
| - | |
18 |
| -LL | const BAD32_3: f32 = 0.100_000_000_000_1; |
| 4 | +LL | const BAD32_1: f32 = 0.100_000_000_000_1; |
19 | 5 | | ^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1`
|
20 |
| - |
21 |
| -error: float has excessive precision |
22 |
| - --> $DIR/excessive_precision.rs:18:29 |
23 | 6 | |
|
24 |
| -LL | const BAD32_EDGE: f32 = 1.000_000_9; |
25 |
| - | ^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.000_001` |
| 7 | + = note: `-D clippy::excessive-precision` implied by `-D warnings` |
26 | 8 |
|
27 | 9 | error: float has excessive precision
|
28 |
| - --> $DIR/excessive_precision.rs:20:26 |
| 10 | + --> $DIR/excessive_precision.rs:17:26 |
29 | 11 | |
|
30 |
| -LL | const BAD64_1: f64 = 0.123_456_789_012_345_67f64; |
31 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66_f64` |
| 12 | +LL | const BAD32_2: f32 = 0.123_456_789_012; |
| 13 | + | ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79` |
32 | 14 |
|
33 | 15 | error: float has excessive precision
|
34 |
| - --> $DIR/excessive_precision.rs:21:26 |
| 16 | + --> $DIR/excessive_precision.rs:25:26 |
35 | 17 | |
|
36 |
| -LL | const BAD64_2: f64 = 0.123_456_789_012_345_67; |
37 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66` |
| 18 | +LL | const BAD64_1: f64 = 0.100_000_000_000_000_000_1; |
| 19 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1` |
38 | 20 |
|
39 | 21 | error: float has excessive precision
|
40 |
| - --> $DIR/excessive_precision.rs:22:26 |
| 22 | + --> $DIR/excessive_precision.rs:26:26 |
41 | 23 | |
|
42 |
| -LL | const BAD64_3: f64 = 0.100_000_000_000_000_000_1; |
43 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1` |
| 24 | +LL | const BAD64_2: f64 = 0.123_456_789_012_345_678_9; |
| 25 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_68` |
44 | 26 |
|
45 | 27 | error: float has excessive precision
|
46 |
| - --> $DIR/excessive_precision.rs:25:22 |
| 28 | + --> $DIR/excessive_precision.rs:29:22 |
47 | 29 | |
|
48 | 30 | LL | println!("{:?}", 8.888_888_888_888_888_888_888);
|
49 | 31 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `8.888_888_888_888_89`
|
50 | 32 |
|
51 | 33 | error: float has excessive precision
|
52 |
| - --> $DIR/excessive_precision.rs:36:22 |
| 34 | + --> $DIR/excessive_precision.rs:40:22 |
53 | 35 | |
|
54 | 36 | LL | let bad32: f32 = 1.123_456_789;
|
55 | 37 | | ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8`
|
56 | 38 |
|
57 | 39 | error: float has excessive precision
|
58 |
| - --> $DIR/excessive_precision.rs:37:26 |
| 40 | + --> $DIR/excessive_precision.rs:41:26 |
59 | 41 | |
|
60 | 42 | LL | let bad32_suf: f32 = 1.123_456_789_f32;
|
61 | 43 | | ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8_f32`
|
62 | 44 |
|
63 | 45 | error: float has excessive precision
|
64 |
| - --> $DIR/excessive_precision.rs:38:21 |
| 46 | + --> $DIR/excessive_precision.rs:42:21 |
65 | 47 | |
|
66 | 48 | LL | let bad32_inf = 1.123_456_789_f32;
|
67 | 49 | | ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8_f32`
|
68 | 50 |
|
69 | 51 | error: float has excessive precision
|
70 |
| - --> $DIR/excessive_precision.rs:40:22 |
71 |
| - | |
72 |
| -LL | let bad64: f64 = 0.123_456_789_012_345_67; |
73 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66` |
74 |
| - |
75 |
| -error: float has excessive precision |
76 |
| - --> $DIR/excessive_precision.rs:41:26 |
77 |
| - | |
78 |
| -LL | let bad64_suf: f64 = 0.123_456_789_012_345_67f64; |
79 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66_f64` |
80 |
| - |
81 |
| -error: float has excessive precision |
82 |
| - --> $DIR/excessive_precision.rs:42:21 |
83 |
| - | |
84 |
| -LL | let bad64_inf = 0.123_456_789_012_345_67; |
85 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66` |
86 |
| - |
87 |
| -error: float has excessive precision |
88 |
| - --> $DIR/excessive_precision.rs:48:36 |
| 52 | + --> $DIR/excessive_precision.rs:50:36 |
89 | 53 | |
|
90 |
| -LL | let bad_vec32: Vec<f32> = vec![0.123_456_789]; |
91 |
| - | ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79` |
| 54 | +LL | let bad_vec32: Vec<f32> = vec![0.123_456_789_012]; |
| 55 | + | ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79` |
92 | 56 |
|
93 | 57 | error: float has excessive precision
|
94 |
| - --> $DIR/excessive_precision.rs:49:36 |
| 58 | + --> $DIR/excessive_precision.rs:53:36 |
95 | 59 | |
|
96 |
| -LL | let bad_vec64: Vec<f64> = vec![0.123_456_789_123_456_789]; |
97 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_123_456_78` |
| 60 | +LL | let bad_vec64: Vec<f64> = vec![0.123_456_789_012_345_678_9]; |
| 61 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_68` |
98 | 62 |
|
99 | 63 | error: float has excessive precision
|
100 |
| - --> $DIR/excessive_precision.rs:53:24 |
| 64 | + --> $DIR/excessive_precision.rs:57:24 |
101 | 65 | |
|
102 | 66 | LL | let bad_e32: f32 = 1.123_456_788_888e-10;
|
103 | 67 | | ^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8e-10`
|
104 | 68 |
|
105 | 69 | error: float has excessive precision
|
106 |
| - --> $DIR/excessive_precision.rs:56:27 |
| 70 | + --> $DIR/excessive_precision.rs:60:27 |
107 | 71 | |
|
108 | 72 | LL | let bad_bige32: f32 = 1.123_456_788_888E-10;
|
109 | 73 | | ^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8E-10`
|
110 | 74 |
|
111 |
| -error: aborting due to 18 previous errors |
| 75 | +error: aborting due to 12 previous errors |
112 | 76 |
|
0 commit comments