]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/variadic-ttp5.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ttp5.C
1 // { dg-do compile { target c++11 } }
2
3 template <typename, typename> struct A { };
4 template <typename T> struct B { };
5
6 template <typename T, template <T...> class C, T... Is>
7 struct A<B<T>, C<Is...>>
8 {
9 using type = C<Is...>;
10 };
This page took 0.039439 seconds and 5 git commands to generate.