blob: 4b5557442690df782ff3f1988b8e2bf6de934ca8 [file] [log] [blame]
// { dg-options "-std=c++0x" }
struct A {};
template<typename... T> struct B : T...
{
B() : T(x)... {} // { dg-error "not declared" }
};
B<A> b;