aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic152.C
blob: d7dccc53f6b41d182797a03aa543f8eca0d9aaff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/54440
// { dg-do compile { target c++11 } }

template <class...T> struct A
{
  template <template <T> class... TP, class U> struct B { };
};

template <int I> struct C { };
template <char C> struct D { };

A<int,char>::B<C,D,float> b;