URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [lambda/] [lambda-deduce.C] - Rev 862
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do "run" }
// { dg-options "-std=c++0x" }
#include <cassert>
int main() {
[] {};
[] {} ();
[] () {};
[] () {} ();
[] () { return "lambda"; };
int i = 1, j = 2;
[&i, j] () { i = j; } ();
assert(i == 2);
assert(j == 2);
i = [] () { return 3; } ();
assert(i == 3);
int k = [&] () { return i; } ();
[]{ return; };
int array[] = { 1, 2, 3 };
int* p = [&] () { return array; } ();
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log