Sign in
llvm
/
clang
/
337cba4b3e17b98cfa512dfd12e57f4ccb0859be
/
.
/
test
/
CodeGenCXX
/
virt-canonical-decl.cpp
blob: c1a8c236af8d60fa80217b83f3b649e7faf85da0 [
file
] [
log
] [
blame
]
// RUN: clang-cc %s -emit-llvm-only
class
Base
{
public
:
virtual
~
Base
();
};
Base
::~
Base
()
{
}
class
Foo
:
public
Base
{
public
:
virtual
~
Foo
();
};
Foo
::~
Foo
()
{
}