freebsd-dev/test/Index/Inputs/reparse-instantiate.h

15 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() {}
};