mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00
7 lines
163 B
Rust
7 lines
163 B
Rust
//@ build-fail
|
|
|
|
//@ error-pattern: are too big for the target architecture
|
|
fn main() {
|
|
println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
|
|
}
|