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
/
ASTMerge
/
class-template
/
Inputs
/
class-template2.cpp
blob
b5d0add13f15e09a75fe680325e257111f1b6973
1
template
<
class
T
>
2
struct
X0
{
3
T
getValue
(
T arg
);
4
};
5
6
template
<
int
I
>
7
struct
X1
;
8
9
template
<
long
I
>
10
struct
X2
;
11
12
template
<
typename
>
13
struct
X3
;
14
15
template
<
template
<
int
I
>
class
>
16
struct
X4
;
17
18
template
<
template
<
int
I
>
class
>
19
struct
X5
;
20
21
template
<
template
<
int
I
>
class
>
22
struct
X6
;
23
24
typedef
int
Integer
;
25
extern
X0
<
Integer
> *
x0i
;
26
extern
X0
<
float
> *
x0f
;
27
extern
X0
<
double
> *
x0r
;
28
29
template
<>
30
struct
X0
<
char
> {
31
int
member
;
32
};
33
34
template
<>
35
struct
X0
<
wchar_t
> {
36
float
member
;
37
};