OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [variadic114.C] - Rev 707

Go to most recent revision | Compare with Previous | Blame | View Log

// PR c++/49785
// { dg-options -std=c++0x }

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);
}

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.