OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / vt-37737-2.C
1 // { dg-options "-std=c++0x" }
2
3 template<class U, class... T>
4 void f()
5 {
6   f<T...>(); // { dg-error "no matching" }
7 }
8
9 template<>
10 void f() { } // { dg-error "template-id" }
11
12 int main()
13 {
14   f<char>();
15 }