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-nop.C] - Rev 826
Compare with Previous | Blame | View Log
// { dg-do "run" }
// { dg-options "-std=c++0x" }
#include <cassert>
int main() {
int i = 1, j = 2;
[i, j] () -> void {} ();
assert(i == 1);
assert(j == 2);
[&i, &j] () -> void {} ();
assert(i == 1);
assert(j == 2);
[] (int x) -> void {} (1);
[] (int& x) -> void {} (i);
[] (int x, int y) -> void {} (i, j);
return 0;
}