Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
f1d1d9ad72507a8ef1e97d2dccad8445f035e762
/
.
/
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
()
{
}