rust/tests/compile-fail/oom2.rs

9 lines
193 B
Rust
Raw Normal View History

#![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
}
}