rt_gccstream/gcc/testsuite/g++.dg/cpp0x/vt-37737-1.C

12 lines
159 B
C

// { dg-options "-std=c++0x" }
void f() { }
template<class U, class... T>
void f(){ f<T...>(); } // { dg-error "no matching" }
int main()
{
f<char>();
}