aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic19.C
blob: 0ae2672bff044aa3f17f6f5665824663b1b256a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do compile { target c++11 } }
template<typename... Args>
struct tuple {
  static const int value = 0;
};

template<typename T, template<class T> class... Metafunctions>
struct tuple<Metafunctions<T>...> {
  static const int value = 1;
};

template<typename T> struct add_pointer;
template<typename T> struct add_reference;

int a0[tuple<int, float>::value == 0? 1 : -1];
int a1[tuple<add_pointer<int>, add_pointer<float> >::value == 0? 1 : -1];
int a2[tuple<>::value == 0? 1 : -1];
int a3[tuple<add_pointer<int> >::value == 1? 1 : -1];
int a4[tuple<add_pointer<int>, add_reference<int> >::value == 1? 1 : -1];