rust/tests/mir-opt/box_expr.rs

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

22 lines
320 B
Rust
Raw Normal View History

// ignore-wasm32-bare compiled with panic=abort by default
#![feature(box_syntax)]
2020-07-27 19:22:43 +00:00
// EMIT_MIR box_expr.main.ElaborateDrops.before.mir
fn main() {
let x = box S::new();
drop(x);
}
struct S;
impl S {
fn new() -> Self { S }
}
impl Drop for S {
fn drop(&mut self) {
println!("splat!");
}
}