* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic174.C
blob36b76675da32fd1ecb97e082d4728c4a8008f598
1 // PR c++/80026
2 // { dg-do compile { target c++11 } }
4 void g(int) {}
5 void g(bool){}
7 template <class...S>
8 void f(S...){}
10 int main(){
11   f(&g);  // { dg-error "too many arguments" }