blob: a6e6c5b73beeab51e38c11e2512de9ffa7b54f7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ 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<<45)-1]>;
fn main() {
let big: BIG = None;
//~^ ERROR are too big for the current architecture
}
|