]> git.lizzy.rs Git - rust.git/blob - src/test/ui/huge-array.rs
Rollup merge of #66350 - hermitcore:hermit, r=rkruppe
[rust.git] / src / test / ui / huge-array.rs
1 // FIXME https://github.com/rust-lang/rust/issues/59774
2 // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
3 // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
4
5 fn generic<T: Copy>(t: T) {
6     let s: [T; 1518600000] = [t; 1518600000];
7     //~^ ERROR the type `[[u8; 1518599999]; 1518600000]` is too big for the current architecture
8 }
9
10 fn main() {
11     let x: [u8; 1518599999] = [0; 1518599999];
12     generic::<[u8; 1518599999]>(x);
13 }