mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
418 B
Rust
13 lines
418 B
Rust
// 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(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];
|
|
}
|