* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-nondeduce1.C
blob4aa5dbab2b099fbc904f249f7d0e33feaaf92edc
1 // { dg-do compile { target c++11 } }
3 template <class... T>
4 void f(T..., int, T...) { }
6 int main()
8   f(0);
9   f<int>(0,0,0);
10   f<int,int>(0,0,0,0,0);
11   f(0,0,0);                     // { dg-error "" }