summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/issue_62289.rs
blob: 37e3390d5fc066240978d20d6fa779e9d5c09cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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();
}