1// PR c++/23437
2
3template <void (*p)()> struct S {
4  static const int i = 10;
5};
6
7void g();
8
9int a[S<g>::i];
10