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-use.C] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options -std=c++0x }
int main(int argc, char** argv)
{
int i;
int &ir = i;
const int ci = 0;
const int &cir = ci;
[] { sizeof (argc); sizeof (i); sizeof (ir); sizeof (ci); sizeof (cir); };
[] { int ia[ci]; };
}
Go to most recent revision | Compare with Previous | Blame | View Log