(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
debug/
dwarf2/
pr41063.C
// Contributed by Cary Coutant <ccoutant@google.com>
// Origin: PR debug/41063
// { dg-do compile }

struct A {
  virtual void run();
};

void test() {
  struct B : public A {
    void run() {
      struct C : public A {
	C() { }
	B *b_;
      };
      C c;
    }
  };
  B b;
}