* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / temp_default5.C
blobdd84d260ea792c444905b829f0d6a5151f963df1
1 // { dg-do compile { target c++11 } }
3 template <class Z = void, class T>
4 void Foo(T)
6   struct X {};
9 template <class T = int, typename U>
10 void f(const U&)
12   auto g = [] () {};