blob: 3321fc70272411dbdeef89479fa3224dc08684f3 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm-only -cxx-abi itanium %s
struct A
{
A();
virtual ~A();
};
struct B: A
{
B();
~B();
};
B::B()
{
}
B::~B()
{
}