Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
41a7e89183116ea89c71d78564a4a7fd7712c0f6
/
.
/
test
/
Index
/
Inputs
/
reparse-instantiate.h
blob: df90a6dd4823c662f953261d8c35115ccd3b0040 [
file
] [
log
] [
blame
]
template
<
typename
T
>
struct
S
;
template
<
typename
T
>
void
c
(
T
)
{
}
template
<>
struct
S
<int>
{
void
a
()
{
c
(&
S
<int>
::
b
);
}
void
b
()
{}
};