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][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
Import
/
template-specialization
/
Inputs
/
T.cpp
blob
7eea95829048c7b7997eb9b64309d50d3e38e640
1
template
<
typename T
>
struct
A
{
2
};
3
4
template
<>
struct
A
<
int
> {
5
struct
B
{
6
int
f
;
7
};
8
};
9
10
template
<>
struct
A
<
bool
> {
11
struct
B
{
12
int
g
;
13
};
14
};
15
16
17
template
<
typename T
>
constexpr
int
f
() {
return
0
; }
18
template
<>
constexpr
int
f
<
int
>() {
return
4
; }