mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
10 lines
219 B
Rust
10 lines
219 B
Rust
//@ 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];
|
|
}
|