* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / syntax-err1.C
blob5f5a236a5cd4d965cde5ea34932df1dd1af65398
1 // PR c++/47198
2 // { dg-do compile { target c++11 } }
4 struct S
6   template < int > sometype foo (); // { dg-error "sometype. does not name a type" }
7   S () = default;
8 };