about summary refs log tree commit diff
path: root/tests/codegen/dealloc-no-unwind.rs
blob: ead26da610e2574a8f98b8e54df78c39f5cc6592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//@ compile-flags: -O

#![crate_type = "lib"]

struct A;

impl Drop for A {
    fn drop(&mut self) {
        extern "C" {
            fn foo();
        }
        unsafe {
            foo();
        }
    }
}

#[no_mangle]
pub fn a(a: Box<i32>) {
    // CHECK-LABEL: define{{.*}}void @a
    // CHECK: call void @__rust_dealloc
    // CHECK-NEXT: call void @foo
    let _a = A;
    drop(a);
}