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