]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/issue-66397.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / issue-66397.rs
CommitLineData
e74abb32
XL
1// check-pass
2// only-x86_64
3
4// Checks that the compiler does not actually try to allocate 4 TB during compilation and OOM crash.
5
6fn main() {
7 [0; 4 * 1024 * 1024 * 1024 * 1024];
8}