// Testcase for variadic init list deduction. // { dg-do compile { target c++11 } } #include template void f (std::initializer_list... ls); int main() { f({1},{2.0}); }