xref: /aosp_15_r20/external/clang/test/CodeGenCXX/virtual-inherited-destructor.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
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