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-array.C] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that array capture by copy works.
// { dg-options -std=c++0x }
// { dg-do run }
struct A
{
int i;
A(int i): i(i) {}
A(const A& a): i(a.i+1) {}
};
int main()
{
A ar[4][3] = { { 10, 20, 30 },
{ 40, 50, 60 },
{ 70, 80, 90 },
{ 100, 110, 120 } };
int i = [ar] { return ar[1][1]; }().i;
return (i!= 52);
}
Go to most recent revision | Compare with Previous | Blame | View Log