2024-12-01 13:47:10 +00:00
|
|
|
//@ only-64bit
|
|
|
|
pub struct Data([u8; usize::MAX >> 2]);
|
|
|
|
const _: &'static [Data] = &[];
|
|
|
|
//~^ERROR: evaluation of constant value failed
|
2025-04-05 16:19:56 +00:00
|
|
|
//~| NOTE too big for the target architecture
|
2024-12-01 13:47:10 +00:00
|
|
|
|
|
|
|
fn main() {}
|