mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-12 12:06:47 +00:00
6 lines
166 B
Rust
6 lines
166 B
Rust
![]() |
fn main() {
|
||
|
const N: u32 = 1_000;
|
||
|
const M: usize = (f64::from(N) * std::f64::LOG10_2) as usize; //~ ERROR cannot find value
|
||
|
let mut digits = [0u32; M];
|
||
|
}
|