mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
355 B
Rust
18 lines
355 B
Rust
// 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(rustc_attrs)]
|
|
|
|
// EMIT_MIR issue_62289.test.ElaborateDrops.before.mir
|
|
fn test() -> Option<Box<u32>> {
|
|
Some(
|
|
#[rustc_box]
|
|
Box::new(None?),
|
|
)
|
|
}
|
|
|
|
fn main() {
|
|
test();
|
|
}
|