Fortran: Suppress wrong End Of File error with user defined IO.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 970206-1.c
blob233d3305595dc99100bb348bdb8a0bc1887c724f
1 /* { dg-additional-options "-std=gnu89" } */
3 struct Rect
5 int iA;
6 int iB;
7 int iC;
8 int iD;
9 };
11 void
12 f (int * const this, struct Rect arect)
14 g (*this, arect);