Sign in
ara-mdk
/
platform
/
external
/
clang
/
f3260565f46491a0d99e41d47a13767218242ce5
/
.
/
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
()
{}
};