blob: f513ddfa95b5972dea55b534a7479125123b81a9 [file] [log] [blame]
// RUN: %clang_cc1 %s -cxx-abi itanium -emit-llvm -o - | FileCheck %s
struct box {
virtual ~box();
};
struct pile_box : public box {
pile_box(box *);
};
pile_box::pile_box(box *pp)
{
}
// CHECK: call void @_ZdlPv