aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic-unify.C
blob: 29b528ccc4416f03603f9e82a4e5cf8ccc584af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile { target c++11 } }
template<typename...> struct tuple { };

template<typename... Args1, typename... Args2>
void foo(tuple<Args1..., Args2...>, tuple<Args1...>, tuple<Args2...>);

struct X{ };

void bar()
{
  tuple<int, float> tif;
  tuple<double, X> tdx;
  tuple<int, float, double, X> tall;
  foo(tall, tif, tdx);
}