view gcc/testsuite/g++.dg/cpp0x/variadic8.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile { target c++11 } }
template<typename... Args>
struct tuple_base {
  static const int value = 0;
};

template<>
struct tuple_base<int*>
{
  static const int value = 1;
};

template<typename T>
struct tuple_base<T*>
{
  static const int value = 2;
};

template<typename... Args>
struct tuple_of_pointers : tuple_base<Args*...> { };

int a1[tuple_of_pointers<int>::value == 1? 1 : -1];
int a2[tuple_of_pointers<float>::value == 2? 1 : -1];