]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-15919-32.rs
Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-15919-32.rs
1 // ignore-64bit
2
3 // FIXME https://github.com/rust-lang/rust/issues/59774
4 // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
5 // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
6
7 fn main() {
8     let x = [0usize; 0xffff_ffff]; //~ ERROR too big
9 }
10
11 // This and the -64 version of this test need to have different literals, as we can't rely on
12 // conditional compilation for them while retaining the same spans/lines.