// { dg-do compile { target c++11 } } template struct A { void foo(T...); A(T... t) { foo(t); } // { dg-error "parameter packs|t" } }; A a(0);