2021-06-12 23:49:48 +00:00
|
|
|
//@ only-64bit
|
|
|
|
// on 32bit and 16bit platforms it is plausible that the maximum allocation size will succeed
|
2025-01-24 02:25:26 +00:00
|
|
|
// FIXME (#135952) In some cases on AArch64 Linux the diagnostic does not trigger
|
|
|
|
//@ ignore-aarch64-unknown-linux-gnu
|
2025-03-03 20:40:23 +00:00
|
|
|
// AIX will allow the allocation to go through, and get SIGKILL when zero initializing
|
|
|
|
// the overcommitted page.
|
|
|
|
//@ ignore-aix
|
2021-06-12 23:49:48 +00:00
|
|
|
|
|
|
|
const FOO: () = {
|
|
|
|
// 128 TiB, unlikely anyone has that much RAM
|
|
|
|
let x = [0_u8; (1 << 47) - 1];
|
2021-06-15 22:24:39 +00:00
|
|
|
//~^ ERROR evaluation of constant value failed
|
2021-06-12 23:49:48 +00:00
|
|
|
};
|
|
|
|
|
2021-06-19 14:48:44 +00:00
|
|
|
static FOO2: () = {
|
|
|
|
let x = [0_u8; (1 << 47) - 1];
|
|
|
|
//~^ ERROR could not evaluate static initializer
|
|
|
|
};
|
|
|
|
|
2021-06-12 23:49:48 +00:00
|
|
|
fn main() {
|
2023-06-12 08:55:36 +00:00
|
|
|
FOO;
|
|
|
|
FOO2;
|
2021-06-12 23:49:48 +00:00
|
|
|
}
|