1 // { dg-do compile { target c++11 } }
2 template<typename...> struct A;
3 
4 template<typename...T, typename...U>
5   struct A<T..., U...> {}; // { dg-error "must be at the end" }
6 
7 A<int> a; // { dg-error "incomplete" }
8