Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
consts
/
issue-66342.rs
blob: 0a87f789e48866619d57e6fb8f4acdcd56cda9f6 [
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
foo
()
->
[
u8
;
4
*
1024
*
1024
*
1024
*
1024
]
{
unimplemented
!()
}
fn
main
()
{
foo
();
}