rust/tests/ui/resolve/issue-50599.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
781 B
Plaintext
Raw Permalink Normal View History

error[E0425]: cannot find value `LOG10_2` in module `std::f64`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-50599.rs:3:48
|
2019-03-09 06:03:44 -06:00
LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
| ^^^^^^^ not found in `std::f64`
|
help: consider importing one of these constants
|
2024-04-12 08:15:52 -05:00
LL + use std::f128::consts::LOG10_2;
|
LL + use std::f16::consts::LOG10_2;
|
2023-03-17 21:18:39 -05:00
LL + use std::f32::consts::LOG10_2;
|
2023-03-17 21:18:39 -05:00
LL + use std::f64::consts::LOG10_2;
|
2022-05-02 21:07:47 -05:00
help: if you import `LOG10_2`, refer to it directly
|
LL - const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
LL + const M: usize = (f64::from(N) * LOG10_2) as usize;
2022-06-08 12:34:57 -05:00
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0425`.