blob: 8b7c373c1b73a869584cf52c517d6b02ca446a72 [file] [log] [blame]
// Build don't link:
template <class T>
struct S : public S<T*> {};
template <>
struct S<int**> {};
void g()
{
int S<int*>::*p;
int S<int>::*q = p;
}