repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
virt-canonical-decl.cpp
blob
dfc36194892160a6440d114947ed4e8a6d3a08e1
1
// RUN: %clang_cc1 %s -emit-llvm-only
2
3
class
Base
{
4
public
:
5
virtual
~
Base
();
6
};
7
8
Base
::~
Base
()
9
{
10
}
11
12
class
Foo
:
public
Base
{
13
public
:
14
virtual
~
Foo
();
15
};
16
17
Foo
::~
Foo
()
18
{
19
}