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-copy-neg.C] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x" }
int main() {
int i;
const char* s;
[i, s] () -> void { i; s; } ();
[] () -> void { i; } (); // { dg-error "" "`i' is not captured" }
[1] () -> void {} (); // { dg-error "expected identifier" }
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log