llvm-for-llvmta/tools/clang/test/Index/Inputs/reparse-instantiate.h

15 lines
153 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
template <typename T> struct S;
template<typename T> void c(T)
{
}
template <> struct S <int>
{
void a()
{
c(&S<int>::b);
}
void b() {}
};