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-conv4.C] - Rev 826
Compare with Previous | Blame | View Log
// PR c++/43641
// { dg-options "-std=c++0x" }
struct B
{
int i;
};
void func()
{
[](const B& b) -> const int& { return b.i; };
[](const B& b) { return b; };
}