mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
8 lines
189 B
Rust
8 lines
189 B
Rust
//@ only-64bit
|
|
pub struct Data([u8; usize::MAX >> 2]);
|
|
const _: &'static [Data] = &[];
|
|
//~^ERROR: evaluation of constant value failed
|
|
//~| too big for the target architecture
|
|
|
|
fn main() {}
|