Sign in
cobalt
/
cobalt
/
cde3442a440acd4a8f18a44377f1db36e384db7e
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGenCXX
/
virt-canonical-decl.cpp
blob: dfc36194892160a6440d114947ed4e8a6d3a08e1 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm-only
class
Base
{
public
:
virtual
~
Base
();
};
Base
::~
Base
()
{
}
class
Foo
:
public
Base
{
public
:
virtual
~
Foo
();
};
Foo
::~
Foo
()
{
}