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
/
Modules
/
Inputs
/
merge-template-members
/
a2.h
blob
9212a3f0debc15c2cc9156776e2eff0d361a4f20
1
namespace
N
{
2
template
<
typename
>
struct
A
{
3
int
n
;
4
A
() :
n
() {}
5
};
6
7
// Create declaration of A<int>.
8
typedef
A
<
int
>
AI
;
9
}