blob: 0a87f789e48866619d57e6fb8f4acdcd56cda9f6 (
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();
}
|