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
/
template-specialization-visibility
/
c.h
blob
a92fb3b4c60c1c21cba4909c6d25f750ba974db4
1
#ifndef C_H
2
#define C_H
3
template
<
typename T
>
struct
S
{
int
n
; };
4
template
<
typename U
>
struct
T
<
U
>::
S
{
int
n
; };
5
template
<
typename U
>
enum
T
<
U
>::
E
:
int
{
e
};
6
#endif