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

template<typename>
struct X
{
  bool b;

  void f()
  {
    [this]{ return b; };
  }
};