1 // RUN: %clang_cc1 %s -emit-llvm-only 2 3 struct A { virtual ~A(); }; 4 struct B : A { 5 ~B() { } 6 }; 7 B x; 8 9