about summary refs log tree commit diff
path: root/tests/ui/consts/promoted_size_overflow.rs
blob: 232fb76c75b0c18b096ed5d24523d4d1565a61df (plain)
1
2
3
4
5
6
//@ only-64bit
pub struct Data([u8; usize::MAX >> 2]);
const _: &'static [Data] = &[];
//~^ ERROR: too big for the target architecture

fn main() {}