* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr79361-2.C
blob25562118ffa852af7d919964fe8980d9c476c33c
1 // PR c++/79361
2 // { dg-do compile { target c++11 } }
4 template<typename T> void foo(T);
6 template<> void foo<int>(int) {}   // { dg-message "declared" }
7 template<> void foo<int>(int) = default;  // { dg-error "redefinition" }