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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
default-destructor-nested.cpp
blob
77b06d639f4c8c6f5ed28d2b1922d8401c99108d
1
// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only
2
// PR6294
3
4
class
A
{
5
public
:
virtual
~
A
();
6
};
7
class
B
{
8
class
C
;
9
};
10
class B
::
C
:
public
A
{
11
C
();
12
};
13
B
::
C
::
C
() {}