rust/tests/mir-opt/issue_62289.rs

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

15 lines
314 B
Rust
Raw Normal View History

// 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)]
2020-07-27 14:22:43 -05:00
// EMIT_MIR issue_62289.test.ElaborateDrops.before.mir
fn test() -> Option<Box<u32>> {
Some(box (None?))
}
fn main() {
test();
}