mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +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];
|
|
}
|