Sign in
llvm
/
llvm-project
/
clang
/
ea7d68091c52b0158c055f28f13ea74b6245fec0
/
.
/
test
/
CodeGenCXX
/
virtual-inherited-destructor.cpp
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
;