]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/issue-50599.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / resolve / issue-50599.stderr
CommitLineData
94b46f34 1error[E0425]: cannot find value `LOG10_2` in module `std::f64`
0731742a 2 --> $DIR/issue-50599.rs:3:48
94b46f34 3 |
532ac7d7 4LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
94b46f34 5 | ^^^^^^^ not found in `std::f64`
e74abb32 6 |
f9f354fc 7help: consider importing one of these items
94b46f34
XL
8 |
9LL | use std::f32::consts::LOG10_2;
10 |
11LL | use std::f64::consts::LOG10_2;
12 |
04454e1e
FG
13help: if you import `LOG10_2`, refer to it directly
14 |
15LL - const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
16LL + const M: usize = (f64::from(N) * LOG10_2) as usize;
923072b8
FG
17 |
18
487cf647 19note: erroneous constant used
923072b8
FG
20 --> $DIR/issue-50599.rs:4:29
21 |
22LL | let mut digits = [0u32; M];
487cf647 23 | ^
94b46f34 24
487cf647 25error: aborting due to previous error
94b46f34 26
487cf647 27For more information about this error, try `rustc --explain E0425`.