]> git.lizzy.rs Git - rust.git/blob - tests/ui/excessive_precision.stderr
Merge pull request #2673 from estk/excessive_precision
[rust.git] / tests / ui / excessive_precision.stderr
1 error: float has excessive precision
2   --> $DIR/excessive_precision.rs:14:26
3    |
4 14 |     const BAD32_1: f32 = 0.123_456_789_f32;
5    |                          ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.12345679`
6    |
7    = note: `-D excessive-precision` implied by `-D warnings`
8
9 error: float has excessive precision
10   --> $DIR/excessive_precision.rs:15:26
11    |
12 15 |     const BAD32_2: f32 = 0.123_456_789;
13    |                          ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.12345679`
14
15 error: float has excessive precision
16   --> $DIR/excessive_precision.rs:16:26
17    |
18 16 |     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:26
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`
26
27 error: float has excessive precision
28   --> $DIR/excessive_precision.rs:19:26
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`
32
33 error: float has excessive precision
34   --> $DIR/excessive_precision.rs:20:26
35    |
36 20 |     const BAD64_3: f64 = 0.100_000_000_000_000_000_1;
37    |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1`
38
39 error: float has excessive precision
40   --> $DIR/excessive_precision.rs:23:20
41    |
42 23 |     println!("{}", 8.888_888_888_888_888_888_888);
43    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `8.88888888888889`
44
45 error: float has excessive precision
46   --> $DIR/excessive_precision.rs:35:24
47    |
48 35 |     let bad32_1: f32 = 1.123_456_789_f32;
49    |                        ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.1234568`
50
51 error: float has excessive precision
52   --> $DIR/excessive_precision.rs:36:24
53    |
54 36 |     let bad32_2: f32 = 1.123_456_789;
55    |                        ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.1234568`
56
57 error: float has excessive precision
58   --> $DIR/excessive_precision.rs:38:24
59    |
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`
62
63 error: float has excessive precision
64   --> $DIR/excessive_precision.rs:39:24
65    |
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`
68
69 error: float has excessive precision
70   --> $DIR/excessive_precision.rs:40:19
71    |
72 40 |     let bad64_3 = 0.123_456_789_012_345_67;
73    |                   ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.12345678901234566`
74
75 error: float has excessive precision
76   --> $DIR/excessive_precision.rs:43:32
77    |
78 43 |     let vec32: Vec<f32> = vec![0.123_456_789];
79    |                                ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.12345679`
80
81 error: float has excessive precision
82   --> $DIR/excessive_precision.rs:44:32
83    |
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`
86
87 error: float has excessive precision
88   --> $DIR/excessive_precision.rs:48:24
89    |
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`
92
93 error: float has excessive precision
94   --> $DIR/excessive_precision.rs:51:27
95    |
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`
98
99 error: aborting due to 16 previous errors
100