mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 00:36:54 +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
|
|
}
|