aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic114.C
blob: 82ffe83c7c5985ba792bd03b53bd5fc7caca4fcf (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
// PR c++/49785
// { dg-do compile { target c++11 } }

template <typename, typename ...> struct B { };
template <typename> class A;

template <typename R, typename ... S>
struct A <R (S ...)> : public B <R, S ...>
{
  struct C {};
  template <typename D> A (D, C = C ()) { }
  R operator () (...);
};

template <typename R, typename ... S, typename T>
auto operator >> (A <R (S ...)>, T)->A <R (S ...)>
{
  []() {};
}

int
main ()
{
  A <int (int, int)> a = [](int, int) {};
  auto b = []{};
  (a >> b) (3, 5);
}