rust/src/test/ui/consts/issue-66342.rs

12 lines
216 B
Rust
Raw Normal View History

// check-pass
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.
fn foo() -> [u8; 4 * 1024 * 1024 * 1024 * 1024] {
unimplemented!()
}
fn main() {
foo();
}