]> git.lizzy.rs Git - rust.git/blob - src/test/ui/huge-array-simple.rs
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / huge-array-simple.rs
1 // FIXME (#23926): the error output is not consistent between a
2 // self-hosted and a cross-compiled setup. Skipping for now.
3
4 // ignore-test FIXME(#23926)
5
6 #![allow(exceeding_bitshifts)]
7
8 fn main() {
9     let _fat : [u8; (1<<61)+(1<<31)] =
10         [0; (1u64<<61) as usize +(1u64<<31) as usize];
11 }