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
|
|
}
|