rust/tests/ui/limits/huge-array-simple-32.rs
2024-09-20 10:02:14 -07:00

10 lines
218 B
Rust

//@ ignore-64bit
//@ build-fail
#![allow(arithmetic_overflow)]
fn main() {
let _fat: [u8; (1<<31)+(1<<15)] = //~ ERROR too big for the target architecture
[0; (1u32<<31) as usize +(1u32<<15) as usize];
}