blob: ab09922d7614ae470fd0f6eca0c6e9606dc23ea3 [file] [log] [blame]
// build-pass
// ignore-32bit
#[derive(Clone, Copy)]
struct Foo;
fn main() {
let _ = [(); 4_000_000_000];
let _ = [0u8; 4_000_000_000];
let _ = [Foo; 4_000_000_000];
}