aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/torture/pr49519.C
blob: 2888709d99f5bd20e69103f3fa988768d41a1b8e (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* { dg-do run } */

#include <stdlib.h>

struct null_type {};

inline const null_type cnull() { return null_type(); }

template <class TT> struct cons;
class tuple;

template< int N >
struct get_class {
  template<class TT >
  inline static int& get(cons<TT>& t)
  {
    return get_class<N-1>::template get(t.tail);
  }
};

template<>
struct get_class<0> {
  template<class TT>
  inline static int& get(cons<TT>& t)
  {
    return t.head;
  }
};

template<int N, class T>
struct element
{
private:
  typedef typename T::tail_type Next;
public:
  typedef typename element<N-1, Next>::type type;
};

template<class T>
struct element<0,T>
{
  typedef int type;
};

template<int N, class TT>
inline int& get(cons<TT>& c) {
  return get_class<N>::template get(c);
}

template <class TT>
struct cons {
  typedef TT tail_type;

  int head;
  tail_type tail;

  cons() : head(), tail() {}

  template <class T1, class T2, class T3, class T4>
  cons( T1& t1, T2& t2, T3& t3, T4& t4 )
    : head (t1),
      tail (t2, t3, t4, cnull())
      {}
};

template <>
struct cons<null_type> {
  typedef null_type tail_type;

  int head;

  cons() : head() {}

  template<class T1>
  cons(T1& t1, const null_type&, const null_type&, const null_type&)
  : head (t1) {}
};

template <class T0, class T1, class T2, class T3>
struct map_tuple_to_cons
{
  typedef cons<typename map_tuple_to_cons<T1, T2, T3, null_type>::type> type;
};

template <>
struct map_tuple_to_cons<null_type, null_type, null_type, null_type>
{
  typedef null_type type;
};

class tuple :
  public map_tuple_to_cons<int, int, int, int>::type
{
public:
  typedef typename
    map_tuple_to_cons<int, int, int, int>::type inherited;

  tuple(const int &t0,
        const int &t1,
        const int &t2,
        const int &t3)
    : inherited(t0, t1, t2, t3) {}
};

void foo(void (*boo)(int, int, int, int), tuple t)
{
  boo(get<0>(t), get<1>(t), get<2>(t), get<3>(t));
}

int tailcalled_t1;
int tailcalled_t2;
int tailcalled_t3;
int tailcalled_t4;

void print(int t1, int t2, int t3, int t4)
{
  tailcalled_t1 = t1;
  tailcalled_t2 = t2;
  tailcalled_t3 = t3;
  tailcalled_t4 = t4;
}

int main ()
{
  tuple t(1,2,3,4);
  foo(print, t);

  if( (get<0>(t) != tailcalled_t1)
    ||(get<1>(t) != tailcalled_t2)
    ||(get<2>(t) != tailcalled_t3)
      ||(get<3>(t) != tailcalled_t4))
      abort();

  return 0;
}