mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03: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
|
|
}
|