summary refs log tree commit diff
path: root/src/test/ui/huge-array-simple-32.rs
blob: 3e574dfa07b6b2b4812c881b5e71a3ae003d8fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ignore-64bit
// build-fail

// FIXME https://github.com/rust-lang/rust/issues/59774
// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
#![allow(exceeding_bitshifts)]

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];
}