2018-05-15 23:43:43 +00:00
|
|
|
error[E0425]: cannot find value `LOG10_2` in module `std::f64`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-50599.rs:3:48
|
2018-05-15 23:43:43 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
|
2018-05-15 23:43:43 +00:00
|
|
|
| ^^^^^^^ not found in `std::f64`
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: consider importing one of these items
|
2018-05-15 23:43:43 +00:00
|
|
|
|
|
|
|
|
LL | use std::f32::consts::LOG10_2;
|
|
|
|
|
|
|
|
|
LL | use std::f64::consts::LOG10_2;
|
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: if you import `LOG10_2`, refer to it directly
|
2022-04-23 23:41:36 +00: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 17:34:57 +00:00
|
|
|
|
|
2018-05-15 23:43:43 +00:00
|
|
|
|
2022-11-15 11:06:20 +00:00
|
|
|
note: erroneous constant used
|
2022-02-16 09:56:01 +00:00
|
|
|
--> $DIR/issue-50599.rs:4:29
|
|
|
|
|
|
|
|
|
LL | let mut digits = [0u32; M];
|
2022-11-15 11:06:20 +00:00
|
|
|
| ^
|
2022-02-16 09:56:01 +00:00
|
|
|
|
2022-11-15 11:06:20 +00:00
|
|
|
error: aborting due to previous error
|
2018-05-15 23:43:43 +00:00
|
|
|
|
2022-11-15 11:06:20 +00:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|