]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/huge-values.rs
Rollup merge of #106699 - eholk:await-chains-drop-tracking, r=wesleywiser
[rust.git] / tests / ui / consts / huge-values.rs
1 // build-pass
2 // ignore-32bit
3
4 // This test is a canary test that will essentially not compile in a reasonable time frame
5 // (so it'll take hours) if any of the optimizations regress. With the optimizations, these compile
6 // in milliseconds just as if the length were set to `1`.
7
8 #[derive(Clone, Copy)]
9 struct Foo;
10
11 fn main() {
12     let _ = [(); 4_000_000_000];
13     let _ = [0u8; 4_000_000_000];
14     let _ = [Foo; 4_000_000_000];
15     let _ = [(Foo, (), Foo, ((), Foo, [0; 0])); 4_000_000_000];
16     let _ = [[0; 0]; 4_000_000_000];
17 }