* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / vt-37737-2.C
blob56bfdb2008ae559f5ce21b2fcee186857a9ff981
1 // { dg-do compile { target c++11 } }
3 template<class U, class... T>
4 void f()                        // { dg-message "note" }
6   f<T...>(); // { dg-error "no matching" }
7   // { dg-message "(candidate|deduce template parameter)" "candidate note" { target *-*-* } .-1 }
10 template<>
11 void f() { } // { dg-error "template-id" }
13 int main()
15   f<char>();