Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / arg4.C
blob9c9d9ea96c37bcadbf25778b1f3d4af11a9947ac
1 // PR c++/23437
3 template <void (*p)()> struct S {
4   static const int i = 10;
5 };
7 void g();
9 int a[S<g>::i];