1 // { dg-options "-std=c++0x" } 2 // { dg-prune-output "note" } 3 f()4 void f() { } 5 6 template<class U, class... T> f()7 void f(){ f<T...>(); } // { dg-error "no matching" } 8 main()9 int main() 10 { 11 f<char>(); 12 } 13