URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [lambda/] [lambda-ref-default.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-std=c++0x" }
#include <cassert>
int main() {
int i = 1;
float j = 2.0;
[&] () -> void { i = 3; j = 4.0; } ();
assert(i == 3);
assert(j == 4.0);
return 0;
}