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