about summary refs log tree commit diff
path: root/src/tools/miri/tests/fail/memleak_no_backtrace.rs
blob: 1f8d8ba7a7cf48ad76775937db400ecdf836305f (plain)
1
2
3
4
5
6
7
//@compile-flags: -Zmiri-disable-leak-backtraces
//@error-in-other-file: memory leaked
//@normalize-stderr-test: ".*│.*" -> "$$stripped$$"

fn main() {
    std::mem::forget(Box::new(42));
}