aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/ptrmem3.C
blob: 039d5dc65cb4c84169101b9b24ca37a05e3ac782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do assemble  }

template <class T>
struct S : public S<T*> {};
template <>
struct S<int**> {};

void g()
{
  int S<int*>::*p;
  int S<int>::*q = p;
}