about summary refs log tree commit diff
path: root/tests/ui/limits/issue-55878.rs
blob: 9e75f00a408f9814b30ab8c5f8a6e33ae495e15b (plain)
1
2
3
4
5
6
//@ build-fail

fn main() {
    println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
    //~^ ERROR too big for the target architecture
}