2019-11-14 20:48:42 -05:00
|
|
|
//@ check-pass
|
|
|
|
|
//@ only-x86_64
|
2019-11-13 20:37:33 -05:00
|
|
|
|
2019-11-14 06:17:41 -05:00
|
|
|
// Checks that the compiler does not actually try to allocate 4 TB during compilation and OOM crash.
|
|
|
|
|
|
2019-11-13 20:37:33 -05:00
|
|
|
fn main() {
|
|
|
|
|
[0; 4 * 1024 * 1024 * 1024 * 1024];
|
|
|
|
|
}
|