* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ice14.C
blobf936fb9cd49bf6b692f4f48249f92a0595480ae3
1 // PR c++/60305
2 // { dg-do compile { target c++11 } }
4 template<int I> int foo() { return I; }
6 template<int... I> void bar()
8   constexpr int (*X[])() = { foo<I>... };
11 template void bar<1,3,5>();