// { dg-do compile { target c++11 } } template struct A { }; template void f( A... p); void g() { f( A(), A() ); }