* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / fntmpdefarg1.C
blob3081d67c54db20aefab99491314a52e5627b2190
1 // PR c++/37766
2 // { dg-do compile { target c++11 } }
4 int a = 1;
5 template<int& b = a> void f() {
6   f<>();