blob: 66c09102d804bbf39c582bb528489d8300dd16e5 [file] [log] [blame]
// PR c++/43641
// { dg-do compile { target c++11 } }
struct B
{
int i;
};
void func()
{
[](const B& b) -> const int& { return b.i; };
[](const B& b) { return b; };
}