1 // { dg-do compile { target c++11 } }
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