mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 05:37:33 +00:00
7 lines
155 B
Rust
7 lines
155 B
Rust
//@ build-fail
|
|
|
|
fn main() {
|
|
println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
|
|
//~^ ERROR too big for the target architecture
|
|
}
|