view gcc/testsuite/g++.dg/cpp0x/variadic91.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile { target c++11 } }
template<int N> struct Int2Type { };

template<typename... T>
struct Outer {
  template<typename... U>
  void foo(Int2Type<sizeof...(T)>, Int2Type<sizeof...(U)>);
};


Outer<short, int, long> outer;

void g4() {
  outer.foo<float, double>(Int2Type<3>(), Int2Type<2>());
}

template<typename... T, template<T...> class X> void f1();