* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist30.C
blobeb78f3c1cdbc790d9cf942a8a364872e5d5074b5
1 // Testcase for variadic init list deduction.
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 template <class... Ts>
7 void f (std::initializer_list<Ts>... ls);
9 int main()
11   f({1},{2.0});