rust/tests/ui/limits/issue-55878.rs

7 lines
163 B
Rust

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