]> git.proxmox.com Git - rustc.git/blame - src/test/ui/limits/issue-15919-32.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / limits / issue-15919-32.rs
CommitLineData
416331ca 1// ignore-64bit
dfeec247 2// build-fail
416331ca
XL
3
4// FIXME https://github.com/rust-lang/rust/issues/59774
5// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
6// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
7
8fn main() {
9 let x = [0usize; 0xffff_ffff]; //~ ERROR too big
10}
11
12// This and the -64 version of this test need to have different literals, as we can't rely on
13// conditional compilation for them while retaining the same spans/lines.