Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.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[] = {};