rust/tests/ui/limits/huge-enum.rs
2024-09-20 10:02:14 -07:00

15 lines
383 B
Rust

//@ build-fail
//@ normalize-stderr-test: "std::option::Option<\[u32; \d+\]>" -> "TYPE"
//@ normalize-stderr-test: "\[u32; \d+\]" -> "TYPE"
#[cfg(target_pointer_width = "32")]
type BIG = Option<[u32; (1<<29)-1]>;
#[cfg(target_pointer_width = "64")]
type BIG = Option<[u32; (1<<59)-1]>;
fn main() {
let big: BIG = None;
//~^ ERROR are too big for the target architecture
}