* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic142.C
blob83b2429a5a149a588846f91eb3d2a857dcf9bf26
1 // Core 1609
2 // { dg-require-effective-target c++11 }
4 template<typename... T>
5 void f2(int a = 0, T... b, int c = 1);
7 int main(){
8   f2<>(); // parameter a has the value 0 and parameter c has the value 1