summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-66342.rs
blob: 417f69041658da8652a72f3b4af100e68adb5bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass
// only-x86_64

// Checks that the compiler does not actually try to allocate 4 TB during compilation and OOM crash.

fn foo() -> [u8; 4 * 1024 * 1024 * 1024 * 1024] {
    unimplemented!()
}

fn main() {
    foo();
}