1 2 3 4 5 6 7 8
// { dg-options "-std=gnu++0x" } template <typename... T> struct A { void foo(T...); A(T... t) { foo(t); } // { dg-error "parameter packs|t" } }; A<int> a(0);