]>
Commit | Line | Data |
---|---|---|
94b46f34 | 1 | error[E0425]: cannot find value `LOG10_2` in module `std::f64` |
0731742a | 2 | --> $DIR/issue-50599.rs:3:48 |
94b46f34 | 3 | | |
532ac7d7 | 4 | LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize; |
94b46f34 | 5 | | ^^^^^^^ not found in `std::f64` |
e74abb32 | 6 | | |
f9f354fc | 7 | help: consider importing one of these items |
94b46f34 XL |
8 | | |
9 | LL | use std::f32::consts::LOG10_2; | |
10 | | | |
11 | LL | use std::f64::consts::LOG10_2; | |
12 | | | |
04454e1e FG |
13 | help: if you import `LOG10_2`, refer to it directly |
14 | | | |
15 | LL - const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize; | |
16 | LL + const M: usize = (f64::from(N) * LOG10_2) as usize; | |
923072b8 FG |
17 | | |
18 | ||
487cf647 | 19 | note: erroneous constant used |
923072b8 FG |
20 | --> $DIR/issue-50599.rs:4:29 |
21 | | | |
22 | LL | let mut digits = [0u32; M]; | |
487cf647 | 23 | | ^ |
94b46f34 | 24 | |
487cf647 | 25 | error: aborting due to previous error |
94b46f34 | 26 | |
487cf647 | 27 | For more information about this error, try `rustc --explain E0425`. |