Files
rust/tests/ui/limits/issue-55878.rs

9 lines
276 B
Rust
Raw Normal View History

//@ build-fail
//@ normalize-stderr-64bit: "18446744073709551615" -> "SIZE"
//@ normalize-stderr-32bit: "4294967295" -> "SIZE"
2019-08-04 21:18:05 -07:00
//@ error-pattern: are too big for the current architecture
fn main() {
println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
}