1// PR c++/11027
2
3template <class T>
4struct X {
5   typedef void (X::*pfun)();
6   static pfun p[];
7};
8
9template <class T>
10typename X<T>::pfun X<T>::p[] = {};
11
12