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] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
virtual-inherited-destructor.cpp
blob
3ca7b6df8c3d4e6829009280828ae087d5809a47
1
// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only
2
3
struct
A
{
virtual
~
A
(); };
4
struct
B
:
A
{
5
~
B
() { }
6
};
7
B x
;
8