1 // { dg-do compile { target c++11 } }
2 struct A {};
3 
4 template<typename... T> struct B : T...
5 {
6   B() : T(x)... {} // { dg-error "not declared" }
7 };
8 
9 B<A> b;
10