android_mt6572_jiabo/external/clang/test/Index/Inputs/reparse-instantiate.h
2025-09-05 16:56:03 +08:00

14 lines
153 B
C++

template <typename T> struct S;
template<typename T> void c(T)
{
}
template <> struct S <int>
{
void a()
{
c(&S<int>::b);
}
void b() {}
};