2018-05-15 18:43:43 -05:00
|
|
|
error[E0425]: cannot find value `LOG10_2` in module `std::f64`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-50599.rs:3:48
|
2018-05-15 18:43:43 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
|
2018-05-15 18:43:43 -05:00
|
|
|
| ^^^^^^^ not found in `std::f64`
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2024-06-12 18:51:31 -05:00
|
|
|
help: consider importing one of these constants
|
2018-05-15 18:43:43 -05:00
|
|
|
|
|
2024-04-12 08:15:52 -05:00
|
|
|
LL + use std::f128::consts::LOG10_2;
|
|
|
|
|
|
|
|
|
LL + use std::f16::consts::LOG10_2;
|
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::f32::consts::LOG10_2;
|
2018-05-15 18:43:43 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::f64::consts::LOG10_2;
|
2018-05-15 18:43:43 -05:00
|
|
|
|
|
2022-05-02 21:07:47 -05:00
|
|
|
help: if you import `LOG10_2`, refer to it directly
|
2022-04-23 18:41:36 -05:00
|
|
|
|
|
|
|
|
LL - const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
|
|
|
|
LL + const M: usize = (f64::from(N) * LOG10_2) as usize;
|
2022-06-08 12:34:57 -05:00
|
|
|
|
|
2018-05-15 18:43:43 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-05-15 18:43:43 -05:00
|
|
|
|
2022-11-15 05:06:20 -06:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|