(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
970206-1.c
       1  struct Rect
       2  {
       3    int iA;
       4    int iB;
       5    int iC;
       6    int iD;
       7  };
       8  
       9  void
      10  f (int * const this, struct Rect arect)
      11  {
      12    g (*this, arect);
      13  }