aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic151.C
blob: a65351db4105f7f079791d4892cd001047f255ad (plain)
1
2
3
4
5
6
7
8
9
// 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;