(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
nested1.C
// { dg-do assemble  }

struct C
{
  struct D
  {
  };
};

struct E
{
  C& c;
  void g();
};

void E::g()
{
  c.D().f(); // { dg-error "" } no matching function
}