* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / fntmpdefarg8.C
blob8d9b2d26f0117363ac10a790604e087f9aae0643
1 // PR c++/80227
2 // { dg-do compile { target c++11 } }
4 template <class T>
5 int foo (T);
7 template <class T, class U = T [sizeof (T) - 5]>
8 int foo (T, U* = 0);
10 int i = foo (123);