// { dg-options "-std=gnu++0x" } template struct A { void foo(T...); A(T... t) { foo(t); } // { dg-error "parameter packs|t" } }; A a(0);