]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-50599.stderr
New upstream version 1.40.0+dfsg1
[rustc.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:3:48
3 |
4 LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
5 | ^^^^^^^ not found in `std::f64`
6 |
7 help: possible candidates are found in other modules, you can import them into scope
8 |
9 LL | use std::f32::consts::LOG10_2;
10 |
11 LL | use std::f64::consts::LOG10_2;
12 |
13
14 error[E0080]: evaluation of constant value failed
15 --> $DIR/issue-50599.rs:4:29
16 |
17 LL | let mut digits = [0u32; M];
18 | ^ referenced constant has errors
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0080, E0425.
23 For more information about an error, try `rustc --explain E0080`.