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
|
|
|
|
|
|
|
|
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
|
|
|
}
|