2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000419-1.c
blob6127d8b13b0738a58528e5448019846c36089058
1 struct foo { int a, b, c; };
3 void
4 brother (int a, int b, int c)
6 if (a)
7 abort ();
10 void
11 sister (struct foo f, int b, int c)
13 brother ((f.b == b), b, c);
16 int
17 main ()
19 struct foo f = { 7, 8, 9 };
20 sister (f, 1, 2);
21 exit (0);