]> git.lizzy.rs Git - rust.git/blob - tests/ui/limits/huge-array.rs
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / limits / huge-array.rs
1 // FIXME https://github.com/rust-lang/rust/issues/59774
2
3 // build-fail
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     //~^ ERROR values of the type `[[u8; 1518599999]; 1518600000]` are too big
10 }
11
12 fn main() {
13     let x: [u8; 1518599999] = [0; 1518599999];
14     generic::<[u8; 1518599999]>(x);
15 }