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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [lambda/] [lambda-deduce-ext-neg2.C] - Rev 693

Compare with Previous | Blame | View Log

// Test that this is accepted even when pedantic now that it's part
// of the standard.

// { dg-options "-std=c++0x -pedantic" }

bool b;
template <class T>
T f (T t)
{
  [=] { return t+1; };          // OK
  return [=] {
    auto i = t+1;
    return i+1;
  }();
}

int main()
{
  if (f(1) != 3)
    return 1;
}

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.