aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr32128.C
blob: 147001e2cf3951a94ae71e1e2e34e702c0819049 (plain)
1
2
3
4
5
6
7
// { 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" }