]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/consts/issue-55878.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / compile-fail / consts / issue-55878.rs
CommitLineData
416331ca
XL
1// normalize-stderr-64bit "18446744073709551615" -> "SIZE"
2// normalize-stderr-32bit "4294967295" -> "SIZE"
3
fc512014 4// error-pattern: are too big for the current architecture
416331ca 5fn main() {
fc512014 6 println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
416331ca 7}