mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
edafbaffb2
- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
18 lines
412 B
Rust
18 lines
412 B
Rust
// 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];
|
|
//~^ ERROR evaluation of constant value failed
|
|
};
|
|
|
|
static FOO2: () = {
|
|
let x = [0_u8; (1 << 47) - 1];
|
|
//~^ ERROR could not evaluate static initializer
|
|
};
|
|
|
|
fn main() {
|
|
FOO;
|
|
FOO2;
|
|
}
|