* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic41.C
blobdf113679fffb2c14ce29a7af63a5f98c986730cd
1 // A function parameter pack is only deduced if it's at the end
2 // { dg-do compile { target c++11 } }
3 template<typename... Args>
4 void f(const Args&... args, int oops);
6 int main()
8   f<>(1);
9   f(1);
10   f<int>(1,2);
11   f(1,2);                       // { dg-error "no match" }
14 // { dg-prune-output "note" }