xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/970206-1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 struct Rect
2 {
3   int iA;
4   int iB;
5   int iC;
6   int iD;
7 };
8 
9 void
f(int * const this,struct Rect arect)10 f (int * const this, struct Rect arect)
11 {
12   g (*this, arect);
13 }
14