2019-12-13 21:28:32 -06:00
|
|
|
//@ build-fail
|
2019-08-06 13:23:32 -05:00
|
|
|
//@ ignore-32bit
|
2019-08-04 23:18:05 -05:00
|
|
|
|
2020-02-18 15:49:47 -06:00
|
|
|
#![allow(arithmetic_overflow)]
|
2019-08-04 23:18:05 -05:00
|
|
|
|
|
|
|
fn main() {
|
2024-09-20 02:39:10 -05:00
|
|
|
let _fat: [u8; (1<<61)+(1<<31)] = //~ ERROR too big for the target architecture
|
2019-08-06 13:23:32 -05:00
|
|
|
[0; (1u64<<61) as usize +(1u64<<31) as usize];
|
2019-08-04 23:18:05 -05:00
|
|
|
}
|