blob: 147001e2cf3951a94ae71e1e2e34e702c0819049 [file] [log] [blame]
// { dg-do compile { target c++11 } }
template<typename...> struct A;
template<typename...T, typename...U>
struct A<T..., U...> {}; // { dg-error "must be at the end" }
A<int> a; // { dg-error "incomplete" }