Files
2025-10-23 00:38:28 +00:00

7 lines
155 B
Rust

//@ build-fail
fn main() {
println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
//~? ERROR too big for the target architecture
}