rust/tests/mir-opt/issue_62289.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
350 B
Rust
Raw Normal View History

// 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)]
2020-07-27 19:22:43 +00:00
// EMIT_MIR issue_62289.test.ElaborateDrops.before.mir
fn test() -> Option<Box<u32>> {
Some(
#[rustc_box]
Box::new(None?),
)
}
fn main() {
test();
}