1 // PR c++/71833
2 // { dg-do compile { target c++11 } }
3 
4 template < typename ... Ts > struct A
5 {
6   template < Ts ..., typename ... Us > struct B {};
7 };
8 
9 A <>::B < int > e;
10