summary refs log tree commit diff
path: root/tests/ui/limits/huge-array-simple-32.rs
blob: 6ff981cd160ab516809c1d0076830aa1bbb949a6 (plain)
1
2
3
4
5
6
7
8
9
//@ ignore-64bit
//@ build-fail

#![allow(arithmetic_overflow)]

fn main() {
    let _fat: [u8; (1<<31)+(1<<15)] = //~ ERROR too big for the current architecture
        [0; (1u32<<31) as usize +(1u32<<15) as usize];
}