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