]> git.lizzy.rs Git - rust.git/blob - src/test/ui/huge-array.rs
Auto merge of #60132 - davidtwco:issue-60075, r=estebank
[rust.git] / src / test / ui / huge-array.rs
1 // error-pattern:; 1518600000
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 generic<T: Copy>(t: T) {
8     let s: [T; 1518600000] = [t; 1518600000];
9 }
10
11 fn main() {
12     let x: [u8; 1518599999] = [0; 1518599999];
13     generic::<[u8; 1518599999]>(x);
14 }