1 // PR c++/54440
2 // { dg-do compile { target c++11 } }
3 
4 template <class...T> struct A
5 {
6   template <T... t, class U> struct B { };
7 };
8 
9 A<int,char>::B<42,'a',float> b;
10