2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / static2.C
blob881f07ce95a0b21f1fcafca70821f96f68e707cc
1 class A;
3 template<int A::* P>
4 class B
6 public:
7   static int A::* const p = P; // { dg-error "" }
8 };
10 class A
12 public:
14 int dummy;
16 B<&A::dummy> d;