summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/ptrmem3.C
blob: 8b7c373c1b73a869584cf52c517d6b02ca446a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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;
}