blob: 9799a206d28954e48356ea49bc84a1c06988f17f [file] [log] [blame]
// PR c++/11027
template <class T>
struct X {
typedef void (X::*pfun)();
static pfun p[];
};
template <class T>
typename X<T>::pfun X<T>::p[] = {};