rust/tests/pass/memleak_ignored.rs
2022-07-08 16:08:32 +00:00

6 lines
89 B
Rust

//@compile-flags: -Zmiri-ignore-leaks
fn main() {
std::mem::forget(Box::new(42));
}