blob: f936fb9cd49bf6b692f4f48249f92a0595480ae3 [file] [log] [blame]
// 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>();