blob: b3f2b5b09dafbaaf4d328d14a736fd76118c7d0a [file] [log] [blame]
// { 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);