aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000420-2.c
blob: 2d825f01992bd86d3573815f2247dc4a6856ee25 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct x { int a, b, c; };

extern struct x a ();
extern void b (struct x);

void
foo ()
{
  a ();
  b (a ());
}