summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/issue_62289.rs
blob: 40e8352cff4106226ae9daa8dba0f73960d4dfe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// skip-filecheck
// check that we don't forget to drop the Box if we early return before
// initializing it
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY

#![feature(rustc_attrs)]

// EMIT_MIR issue_62289.test.ElaborateDrops.before.mir
fn test() -> Option<Box<u32>> {
    Some(
        #[rustc_box]
        Box::new(None?),
    )
}

fn main() {
    test();
}