]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/issue-50599.stderr
Rollup merge of #95843 - GuillaumeGomez:improve-new-cyclic-doc, r=m-ou-se
[rust.git] / src / test / ui / resolve / 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: consider importing one of these items
8    |
9 LL | use std::f32::consts::LOG10_2;
10    |
11 LL | use std::f64::consts::LOG10_2;
12    |
13 help: if you import `LOG10_2`, refer to it directly
14    |
15 LL -     const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
16 LL +     const M: usize = (f64::from(N) * LOG10_2) as usize;
17    | 
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0425`.