* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / fntmpdefarg6.C
blob1e0dc54092d272dce3abc4c88cecb3ca6f569f46
1 // { dg-do compile { target c++11 } }
3 template <class T>
4 struct A {
5   template <int I = 42, int J = (T)42> int f() { return I; }
6   template <int I = 42> int g() { return f(); }
7 };