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
|
|
|
|
|
2018-05-15 23:43:43 +00:00
|
|
|
help: possible candidates are found in other modules, you can import them into scope
|
|
|
|
|
|
|
|
|
LL | use std::f32::consts::LOG10_2;
|
|
|
|
|
|
|
|
|
LL | use std::f64::consts::LOG10_2;
|
|
|
|
|
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-50599.rs:4:29
|
2018-08-26 13:19:34 +00:00
|
|
|
|
|
|
|
|
LL | let mut digits = [0u32; M];
|
|
|
|
| ^ referenced constant has errors
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-05-15 23:43:43 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0080, E0425.
|
2018-08-26 13:19:34 +00:00
|
|
|
For more information about an error, try `rustc --explain E0080`.
|