File tree 3 files changed +16
-0
lines changed
3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
6
6
|
7
7
help: consider importing one of these items
8
8
|
9
+ LL + use std::f128::consts::LOG10_2;
10
+ |
11
+ LL + use std::f16::consts::LOG10_2;
12
+ |
9
13
LL + use std::f32::consts::LOG10_2;
10
14
|
11
15
LL + use std::f64::consts::LOG10_2;
Original file line number Diff line number Diff line change @@ -107,6 +107,10 @@ LL | (E::TupleWithFields(/* fields */)).foo();
107
107
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
108
108
help: consider importing one of these items instead
109
109
|
110
+ LL + use std::f128::consts::E;
111
+ |
112
+ LL + use std::f16::consts::E;
113
+ |
110
114
LL + use std::f32::consts::E;
111
115
|
112
116
LL + use std::f64::consts::E;
Original file line number Diff line number Diff line change @@ -84,6 +84,10 @@ LL | let _: E = m::f;
84
84
| ~
85
85
help: consider importing one of these items instead
86
86
|
87
+ LL + use std::f128::consts::E;
88
+ |
89
+ LL + use std::f16::consts::E;
90
+ |
87
91
LL + use std::f32::consts::E;
88
92
|
89
93
LL + use std::f64::consts::E;
@@ -121,6 +125,10 @@ LL | let _: E = (E::Fn(/* fields */));
121
125
| ~~~~~~~~~~~~~~~~~~~~~
122
126
help: consider importing one of these items instead
123
127
|
128
+ LL + use std::f128::consts::E;
129
+ |
130
+ LL + use std::f16::consts::E;
131
+ |
124
132
LL + use std::f32::consts::E;
125
133
|
126
134
LL + use std::f64::consts::E;
You can’t perform that action at this time.
0 commit comments