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-mixed.C] - Rev 301
Go to most recent revision | 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] () mutable -> void { i = 0; j = 0; } ();
assert(i == 0);
assert(j == 2);
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log