modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/970206-1.c (about)

     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  }