* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic169.C
blob6858973cd2eb05633d38bb71b337e73eb8a1f021
1 // DR 2233
2 // { dg-do compile { target c++11 } }
4 template<typename ...T> void f(int n = 0, T ...t);
6 int main()
8   f<int>();                     // { dg-error "too few arguments" }