PR c++/54440 * pt.c (coerce_template_parameter_pack): Fix logic for pack index. From-SVN: r238731
10 lines
171 B
C
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;
|