2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ptrmem3.C
blob039d5dc65cb4c84169101b9b24ca37a05e3ac782
1 // { dg-do assemble  }
3 template <class T>
4 struct S : public S<T*> {};
5 template <>
6 struct S<int**> {};
8 void g()
10   int S<int*>::*p;
11   int S<int>::*q = p;