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