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

     1  struct x { int a, b, c; };
     2  
     3  extern struct x a ();
     4  extern void b (struct x);
     5  
     6  void
     7  foo ()
     8  {
     9    a ();
    10    b (a ());
    11  }