1struct Rect
2{
3  int iA;
4  int iB;
5  int iC;
6  int iD;
7};
8
9void
10f (int * const this, struct Rect arect)
11{
12  g (*this, arect);
13}
14