blob: 04ed901ad40c449334ec26cc4a266f77eaaf5f4c [file] [log] [blame]
// PR c++/68116
// { dg-do compile { target c++11 } }
class C {
void foo ();
typedef void (C::*T) (int);
static T b[];
};
C::T C::b[]
{
T (&C::foo)
};