blob: 2d825f01992bd86d3573815f2247dc4a6856ee25 [file] [log] [blame]
struct x { int a, b, c; };
extern struct x a ();
extern void b (struct x);
void
foo ()
{
a ();
b (a ());
}