blob: 5876dbec48504726134dedea5c5733ac3b655a94 [file] [log] [blame]
// { dg-options "-std=c++0x" }
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" }