Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
3734c21b603ec8546613557a0e8a9f566f424324
/
.
/
test
/
SemaTemplate
/
instantiate-using-decl.cpp
blob: fd9010fa4bbb62618cc7ee1f437352332491dfb1 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
template
<
typename
T
>
struct
A
{
void
f
();
};
template
<
typename
T
>
struct
B
:
A
<
T
>
{
using
A
<
T
>::
f
;
void
g
()
{
f
();
}
};
template
struct
B
<int>
;