about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/lossy_float_literal.stderr
blob: 33b650b19c8a512cc24998528e4e17395c389f5a (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:14:18
   |
LL |     let _: f32 = 16_777_217.0;
   |                  ^^^^^^^^^^^^
   |
   = note: `-D clippy::lossy-float-literal` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::lossy_float_literal)]`
help: consider changing the type or replacing it with
   |
LL -     let _: f32 = 16_777_217.0;
LL +     let _: f32 = 16_777_216.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:16:18
   |
LL |     let _: f32 = 16_777_219.0;
   |                  ^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f32 = 16_777_219.0;
LL +     let _: f32 = 16_777_220.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:18:18
   |
LL |     let _: f32 = 16_777_219.;
   |                  ^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f32 = 16_777_219.;
LL +     let _: f32 = 16_777_220.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:20:18
   |
LL |     let _: f32 = 16_777_219.000;
   |                  ^^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f32 = 16_777_219.000;
LL +     let _: f32 = 16_777_220.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:22:13
   |
LL |     let _ = 16_777_219f32;
   |             ^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _ = 16_777_219f32;
LL +     let _ = 16_777_220_f32;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:24:19
   |
LL |     let _: f32 = -16_777_219.0;
   |                   ^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f32 = -16_777_219.0;
LL +     let _: f32 = -16_777_220.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:27:18
   |
LL |     let _: f64 = 9_007_199_254_740_993.0;
   |                  ^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f64 = 9_007_199_254_740_993.0;
LL +     let _: f64 = 9_007_199_254_740_992.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:29:18
   |
LL |     let _: f64 = 9_007_199_254_740_993.;
   |                  ^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f64 = 9_007_199_254_740_993.;
LL +     let _: f64 = 9_007_199_254_740_992.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:31:18
   |
LL |     let _: f64 = 9_007_199_254_740_993.00;
   |                  ^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f64 = 9_007_199_254_740_993.00;
LL +     let _: f64 = 9_007_199_254_740_992.0;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:33:13
   |
LL |     let _ = 9_007_199_254_740_993f64;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _ = 9_007_199_254_740_993f64;
LL +     let _ = 9_007_199_254_740_992_f64;
   |

error: literal cannot be represented as the underlying type without loss of precision
  --> tests/ui/lossy_float_literal.rs:35:19
   |
LL |     let _: f64 = -9_007_199_254_740_993.0;
   |                   ^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider changing the type or replacing it with
   |
LL -     let _: f64 = -9_007_199_254_740_993.0;
LL +     let _: f64 = -9_007_199_254_740_992.0;
   |

error: aborting due to 11 previous errors