8sa1-gcc/gcc/testsuite/g++.dg/cpp0x/variadic-nested1.C
Jason Merrill fd8b207a76 PR c++/71833 - member template with two parameter packs
PR c++/54440
	* pt.c (coerce_template_parameter_pack): Fix logic for
	pack index.

From-SVN: r238731
2016-07-25 15:10:41 -04:00

10 lines
171 B
C

// PR c++/71833
// { dg-do compile { target c++11 } }
template < typename ... Ts > struct A
{
template < Ts ..., typename ... Us > struct B {};
};
A <>::B < int > e;