summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/excessive_precision.stderr
blob: 5e7672e185af3584acbfe9bdabc5f782fed97e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
error: float has excessive precision
  --> $DIR/excessive_precision.rs:20:26
   |
LL |     const BAD32_1: f32 = 0.123_456_789_f32;
   |                          ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79_f32`
   |
   = note: `-D clippy::excessive-precision` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::excessive_precision)]`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:21:26
   |
LL |     const BAD32_2: f32 = 0.123_456_789;
   |                          ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:22:26
   |
LL |     const BAD32_3: f32 = 0.100_000_000_000_1;
   |                          ^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:23:29
   |
LL |     const BAD32_EDGE: f32 = 1.000_000_9;
   |                             ^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.000_001`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:27:26
   |
LL |     const BAD64_3: f64 = 0.100_000_000_000_000_000_1;
   |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:30:22
   |
LL |     println!("{:?}", 8.888_888_888_888_888_888_888);
   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `8.888_888_888_888_89`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:41:22
   |
LL |     let bad32: f32 = 1.123_456_789;
   |                      ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:42:26
   |
LL |     let bad32_suf: f32 = 1.123_456_789_f32;
   |                          ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8_f32`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:43:21
   |
LL |     let bad32_inf = 1.123_456_789_f32;
   |                     ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8_f32`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:53:36
   |
LL |     let bad_vec32: Vec<f32> = vec![0.123_456_789];
   |                                    ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:54:36
   |
LL |     let bad_vec64: Vec<f64> = vec![0.123_456_789_123_456_789];
   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_123_456_78`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:58:24
   |
LL |     let bad_e32: f32 = 1.123_456_788_888e-10;
   |                        ^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8e-10`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:61:27
   |
LL |     let bad_bige32: f32 = 1.123_456_788_888E-10;
   |                           ^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8E-10`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:70:13
   |
LL |     let _ = 2.225_073_858_507_201_1e-308_f64;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `2.225_073_858_507_201e-308_f64`

error: float has excessive precision
  --> $DIR/excessive_precision.rs:73:13
   |
LL |     let _ = 1.000_000_000_000_001e-324_f64;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0_f64`

error: aborting due to 15 previous errors