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