PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp31.C
blobff3f1f5c3acb4df16e3b33e03484424eb3363c71
1 // PR c++/83916
2 // { dg-do compile { target c++11 } }
4 template<class TA,
5          template<TA...> class TTA, TA... VA>
6 struct A { };
8 template<class UC, class TC,
9          template<TC...> class TTC, TC... VC>
10 struct C : A<TC, TTC, VC...> { };