2019-12-14 04:28:32 +01:00
|
|
|
// build-fail
|
2019-08-06 11:23:32 -07:00
|
|
|
// ignore-32bit
|
2019-08-04 21:18:05 -07:00
|
|
|
|
2020-02-18 22:49:47 +01:00
|
|
|
#![allow(arithmetic_overflow)]
|
2019-08-04 21:18:05 -07:00
|
|
|
|
|
|
|
fn main() {
|
2019-08-06 11:23:32 -07:00
|
|
|
let _fat: [u8; (1<<61)+(1<<31)] = //~ ERROR too big for the current architecture
|
|
|
|
[0; (1u64<<61) as usize +(1u64<<31) as usize];
|
2019-08-04 21:18:05 -07:00
|
|
|
}
|