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

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

28 lines
831 B
Plaintext
Raw Normal View History

error[E0425]: cannot find value `LOG10_2` in module `std::f64`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-50599.rs:3:48
|
2019-03-09 12:03:44 +00:00
LL | const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize;
| ^^^^^^^ not found in `std::f64`
|
2022-05-03 02:07:47 +00:00
help: consider importing one of these items
|
LL | use std::f32::consts::LOG10_2;
|
LL | use std::f64::consts::LOG10_2;
|
2022-05-03 02:07:47 +00: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 17:34:57 +00:00
|
note: erroneous constant used
--> $DIR/issue-50599.rs:4:29
|
LL | let mut digits = [0u32; M];
| ^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0425`.