Merged with trunk at revision 155767
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist30.C
bloba5bdb2eda9194e9f8cb60cab699b45790390d424
1 // Testcase for variadic init list deduction.
2 // { dg-options "-std=c++0x" }
4 #include <initializer_list>
6 template <class... Ts>
7 void f (std::initializer_list<Ts>... ls);
9 int main()
11   f({1},{2.0});