blob: da7e0bfed20136562ced62b9be760d751ad08088 [file] [log] [blame]
// PR c++/55972
// { dg-do compile { target c++11 } }
class C
{
void f();
int j = 10;
int i = [this]() { return this->j; }();
};