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