rust/tests/compile-fail/memleak.rs

7 lines
153 B
Rust
Raw Normal View History

// ignore-test FIXME: leak detection is disabled
2017-02-15 02:03:07 -06:00
//error-pattern: the evaluated program leaked memory
fn main() {
std::mem::forget(Box::new(42));
}