blob: a65351db4105f7f079791d4892cd001047f255ad [file] [log] [blame]
// PR c++/54440
// { dg-do compile { target c++11 } }
template <class...T> struct A
{
template <T... t, class U> struct B { };
};
A<int,char>::B<42,'a',float> b;