2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / init3.C
blob9799a206d28954e48356ea49bc84a1c06988f17f
1 // PR c++/11027
3 template <class T>
4 struct X {
5    typedef void (X::*pfun)();
6    static pfun p[];
7 };
9 template <class T>
10 typename X<T>::pfun X<T>::p[] = {};