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