rust/tests/mir-opt/box_expr.rs
2023-03-12 13:19:46 +00:00

25 lines
378 B
Rust

// ignore-wasm32-bare compiled with panic=abort by default
#![feature(rustc_attrs, stmt_expr_attributes)]
// EMIT_MIR box_expr.main.ElaborateDrops.before.mir
fn main() {
let x = #[rustc_box]
Box::new(S::new());
drop(x);
}
struct S;
impl S {
fn new() -> Self {
S
}
}
impl Drop for S {
fn drop(&mut self) {
println!("splat!");
}
}