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