1 2 3 4 5 6 7 8 9 10 11
// PR c++/60305 // { dg-do compile { target c++11 } } template<int I> int foo() { return I; } template<int... I> void bar() { constexpr int (*X[])() = { foo<I>... }; } template void bar<1,3,5>();