Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.c-torture / execute / 20000717-1.c
blob039ae5f342dd6692d978f8504015f3ed5163fbb5
1 typedef struct trio { int a, b, c; } trio;
3 int
4 bar (int i, trio t)
6 if (t.a == t.b || t.a == t.c)
7 abort ();
10 int
11 foo (trio t, int i)
13 return bar (i, t);
16 main ()
18 trio t = { 1, 2, 3 };
20 foo (t, 4);
21 exit (0);