* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr71832.C
blob3b851110f3c721ec9db59d7428b8b2c862e11296
1 // { dg-do compile { target c++11 } }
3 template < typename decltype (0) > struct A  // { dg-error "expected|two or more" }
4
5   void foo () { baz (); }
6   template < typename ... S > void baz () {}
7 };