Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
consts
/
issue-66397.rs
blob: f6c8854dc788ca88f0d17f15d6908245d4878618 [
file
] [
log
] [
blame
]
//@ 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
];
}