]> git.lizzy.rs Git - rust.git/blob - tests/ui/excessive_precision.stderr
Auto merge of #5185 - krishna-veerareddy:issue-5160-lossy-float-literal, r=flip1995
[rust.git] / tests / ui / excessive_precision.stderr
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 error: float has excessive precision
10   --> $DIR/excessive_precision.rs:16:26
11    |
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;
19    |                          ^^^^^^^^^^^^^^^^^^^ 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    |
24 LL |     const BAD32_EDGE: f32 = 1.000_000_9;
25    |                             ^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.000_001`
26
27 error: float has excessive precision
28   --> $DIR/excessive_precision.rs:20:26
29    |
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`
32
33 error: float has excessive precision
34   --> $DIR/excessive_precision.rs:21:26
35    |
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`
38
39 error: float has excessive precision
40   --> $DIR/excessive_precision.rs:22:26
41    |
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`
44
45 error: float has excessive precision
46   --> $DIR/excessive_precision.rs:25:22
47    |
48 LL |     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
53    |
54 LL |     let bad32: f32 = 1.123_456_789;
55    |                      ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8`
56
57 error: float has excessive precision
58   --> $DIR/excessive_precision.rs:37:26
59    |
60 LL |     let bad32_suf: f32 = 1.123_456_789_f32;
61    |                          ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8_f32`
62
63 error: float has excessive precision
64   --> $DIR/excessive_precision.rs:38:21
65    |
66 LL |     let bad32_inf = 1.123_456_789_f32;
67    |                     ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8_f32`
68
69 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
89    |
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`
92
93 error: float has excessive precision
94   --> $DIR/excessive_precision.rs:49:36
95    |
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`
98
99 error: float has excessive precision
100   --> $DIR/excessive_precision.rs:53:24
101    |
102 LL |     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`
104
105 error: float has excessive precision
106   --> $DIR/excessive_precision.rs:56:27
107    |
108 LL |     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`
110
111 error: literal cannot be represented as the underlying type without loss of precision
112   --> $DIR/excessive_precision.rs:65:18
113    |
114 LL |     let _: f32 = 16_777_217.0;
115    |                  ^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_216.0`
116
117 error: literal cannot be represented as the underlying type without loss of precision
118   --> $DIR/excessive_precision.rs:66:18
119    |
120 LL |     let _: f32 = 16_777_219.0;
121    |                  ^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220.0`
122
123 error: literal cannot be represented as the underlying type without loss of precision
124   --> $DIR/excessive_precision.rs:67:18
125    |
126 LL |     let _: f32 = 16_777_219.;
127    |                  ^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220.0`
128
129 error: literal cannot be represented as the underlying type without loss of precision
130   --> $DIR/excessive_precision.rs:68:18
131    |
132 LL |     let _: f32 = 16_777_219.000;
133    |                  ^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220.0`
134
135 error: literal cannot be represented as the underlying type without loss of precision
136   --> $DIR/excessive_precision.rs:69:13
137    |
138 LL |     let _ = 16_777_219f32;
139    |             ^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220.0_f32`
140
141 error: literal cannot be represented as the underlying type without loss of precision
142   --> $DIR/excessive_precision.rs:70:19
143    |
144 LL |     let _: f32 = -16_777_219.0;
145    |                   ^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220.0`
146
147 error: literal cannot be represented as the underlying type without loss of precision
148   --> $DIR/excessive_precision.rs:71:18
149    |
150 LL |     let _: f64 = 9_007_199_254_740_993.0;
151    |                  ^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `9_007_199_254_740_992.0`
152
153 error: literal cannot be represented as the underlying type without loss of precision
154   --> $DIR/excessive_precision.rs:72:18
155    |
156 LL |     let _: f64 = 9_007_199_254_740_993.;
157    |                  ^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `9_007_199_254_740_992.0`
158
159 error: literal cannot be represented as the underlying type without loss of precision
160   --> $DIR/excessive_precision.rs:73:18
161    |
162 LL |     let _: f64 = 9_007_199_254_740_993.000;
163    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `9_007_199_254_740_992.0`
164
165 error: literal cannot be represented as the underlying type without loss of precision
166   --> $DIR/excessive_precision.rs:74:13
167    |
168 LL |     let _ = 9_007_199_254_740_993f64;
169    |             ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `9_007_199_254_740_992.0_f64`
170
171 error: literal cannot be represented as the underlying type without loss of precision
172   --> $DIR/excessive_precision.rs:75:19
173    |
174 LL |     let _: f64 = -9_007_199_254_740_993.0;
175    |                   ^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `9_007_199_254_740_992.0`
176
177 error: aborting due to 29 previous errors
178