mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
9 lines
188 B
Rust
9 lines
188 B
Rust
//@ check-pass
|
|
//@ only-x86_64
|
|
|
|
// Checks that the compiler does not actually try to allocate 4 TB during compilation and OOM crash.
|
|
|
|
fn main() {
|
|
[0; 4 * 1024 * 1024 * 1024 * 1024];
|
|
}
|