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-const-neg.C] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x" }
#include <cassert>
template<typename F>
void call(const F& f) { f(); }
int main() {
call([] () -> void {});
call([] () mutable -> void {});
int i = -1;
call([&i] () -> void { i = 0; });
assert(i == 0);
call([i] () -> void { i = 0; }); // { dg-error "" "assignment to non-reference capture in const lambda" }
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log