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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [lambda/] [lambda-template.C] - Rev 307

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

// { dg-options -std=c++0x }
// { dg-do run }

extern "C" void abort();

template <class T>
auto apply (T t) -> decltype (t())
{
  return t();
}

template <class T>
T f(T t)
{
  T t2 = t;
  if (t != [=]()->T { return t; }())
    abort ();
  if (t != [=] { return t; }())
    abort ();
  if (t != [=] { return t2; }())
    abort ();
  if (t != [&] { return t; }())
    abort ();
  if (t != apply([=]{return t;}))
    abort ();

  int i;
  [&] (int a)                    { return a+i+t; } (0);
  [&] (int a) -> decltype(a)     { return a+i+t; } (0);
  [&] (int a) -> decltype(i)     { return a+i+t; } (0);
  [&] (int a) -> decltype(t)     { return a+i+t; } (0);
  [&] (int a) -> decltype(a+i)   { return a+i+t; } (0);
  [&] (int a) -> decltype(a+t)   { return a+i+t; } (0);
  [&] (int a) -> decltype(i+t)   { return a+i+t; } (0);
  [&] (int a) -> decltype(a+i+t) { return a+i+t; } (0);
}

int main()
{
  f(0xbeef);
}

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.