mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
25 lines
378 B
Rust
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!");
|
|
}
|
|
}
|