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