]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-50599.stderr
Report const eval error inside the query
[rust.git] / src / test / ui / issues / issue-50599.stderr
1 error[E0425]: cannot find value `LOG10_2` in module `std::f64`
2   --> $DIR/issue-50599.rs:13:48
3    |
4 LL |     const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize; //~ ERROR cannot find value
5    |                                                ^^^^^^^ not found in `std::f64`
6 help: possible candidates are found in other modules, you can import them into scope
7    |
8 LL | use std::f32::consts::LOG10_2;
9    |
10 LL | use std::f64::consts::LOG10_2;
11    |
12
13 error[E0080]: evaluation of constant value failed
14   --> $DIR/issue-50599.rs:14:29
15    |
16 LL |     let mut digits = [0u32; M];
17    |                             ^ referenced constant has errors
18
19 error: aborting due to 2 previous errors
20
21 Some errors occurred: E0080, E0425.
22 For more information about an error, try `rustc --explain E0080`.