6 lines
151 B
Rust
6 lines
151 B
Rust
fn main() {
|
|
let data: [u8; 1024*1024*1024] = [42; 1024*1024*1024];
|
|
//~^ ERROR: tried to allocate
|
|
assert_eq!(data.len(), 1024*1024*1024);
|
|
}
|