blob: 32ea22db2783388cea27f9725f400581569388f4 [file] [log] [blame]
// { dg-options "-std=c++0x" }
void f() { }
template<class U, class... T>
void f(){ f<T...>(); } // { dg-error "no matching" }
int main()
{
f<char>();
}