mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
16 lines
345 B
Rust
16 lines
345 B
Rust
// 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, liballoc_internals)]
|
|
|
|
// EMIT_MIR issue_62289.test.ElaborateDrops.before.mir
|
|
fn test() -> Option<Box<u32>> {
|
|
Some(std::boxed::box_new(None?))
|
|
}
|
|
|
|
fn main() {
|
|
test();
|
|
}
|