2020-12-28 20:15:16 +03:00
|
|
|
//@ build-fail
|
2019-08-04 21:18:05 -07:00
|
|
|
|
2019-07-30 17:46:46 -07:00
|
|
|
fn main() {
|
2020-10-24 19:21:40 -04:00
|
|
|
println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
|
2025-05-28 10:29:08 +00:00
|
|
|
//~^ ERROR too big for the target architecture
|
2019-07-30 17:46:46 -07:00
|
|
|
}
|