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