summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/g++.dg/cpp0x/pr32128.C
blob: 595e20e0876ec995da213436e3992882b3f2d9ef (plain)
1
2
3
4
5
6
7
// { dg-options "-std=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" }
OpenPOWER on IntegriCloud