(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lto/
20091026-1_a.h
       1  class cObject {
       2  public:
       3      cObject *firstchildp;
       4  };
       5  class cHead : public cObject {
       6  public:
       7      cObject *find(const char *objname) const;
       8  };
       9