Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / vt-37737-1.C
blobde11b1651b43a9cd5dd7b45d290d4a4b09f9aa74
1 // { dg-options "-std=c++0x" }
2 // { dg-prune-output "note" }
4 void f() { }
6 template<class U, class... T>
7 void f(){ f<T...>(); } // { dg-error "no matching" }
9 int main()
10
11   f<char>();