blob: 9c9d9ea96c37bcadbf25778b1f3d4af11a9947ac [file] [log] [blame]
// PR c++/23437
template <void (*p)()> struct S {
static const int i = 10;
};
void g();
int a[S<g>::i];