blob: 37e3390d5fc066240978d20d6fa779e9d5c09cd0 [file] [log] [blame]
// check that we don't forget to drop the Box if we early return before
// initializing it
// ignore-wasm32-bare compiled with panic=abort by default
#![feature(box_syntax)]
// EMIT_MIR issue_62289.test.ElaborateDrops.before.mir
fn test() -> Option<Box<u32>> {
Some(box (None?))
}
fn main() {
test();
}