rust/tests/compile-fail/oom2.rs

11 lines
283 B
Rust
Raw Normal View History

// Validation forces more allocation; disable it.
// compile-flags: -Zmir-emit-validate=0
#![feature(box_syntax, custom_attribute, attr_literals)]
#![miri(memory_size=2048)]
2016-07-05 06:04:53 -05:00
fn main() {
loop {
::std::mem::forget(box 42); //~ ERROR tried to allocate 4 more bytes
2016-07-05 06:04:53 -05:00
}
}