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));
}
|