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
/
Index
/
Inputs
/
reparse-instantiate.h
blob
df90a6dd4823c662f953261d8c35115ccd3b0040
1
template
<
typename T
>
struct
S
;
2
3
template
<
typename T
>
void
c
(
T
)
4
{
5
}
6
7
template
<>
struct
S
<
int
>
8
{
9
void
a
()
10
{
11
c
(&
S
<
int
>::
b
);
12
}
13
void
b
() {}
14
};