aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic67.C
blob: 6e328cfe0bd05adade8c95389dd246593b179a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// { dg-do compile { target c++11 } }
template<typename... Elements> struct tuple {};

template<typename... Args>
struct nested
{
  typedef tuple<tuple<Args, Args...>...> type;
};

template<typename T, typename U>
struct is_same
{
  static const bool value = false;
};

template<typename T>
struct is_same<T, T>
{
  static const bool value = true;
};

int a0[is_same<nested<int, float>::type, 
                      tuple<tuple<int, int, float>, 
                            tuple<float, int, float> > >::value? 1 : -1];