(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
lambda/
lambda-nsdmi3.C
// PR c++/55972
// { dg-do compile { target c++11 } }

class C
{
  void f();
  int j = 10;
  int i = [this]() { return this->j; }();
};