7 lines
149 B
Rust
7 lines
149 B
Rust
//@ only-64bit
|
|
pub struct Data([u8; usize::MAX >> 2]);
|
|
const _: &'static [Data] = &[];
|
|
//~^ ERROR: too big for the target architecture
|
|
|
|
fn main() {}
|