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