Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / execute / 20000717-5.c
blob49dcbbc66f1760bfa73ab1dc03110417ee574b53
1 typedef struct trio { int a, b, c; } trio;
3 int
4 bar (int i, int j, int k, trio t)
6 if (t.a != 1 || t.b != 2 || t.c != 3 ||
7 i != 4 || j != 5 || k != 6)
8 abort ();
11 int
12 foo (trio t, int i, int j, int k)
14 return bar (i, j, k, t);
17 main ()
19 trio t = { 1, 2, 3 };
21 foo (t, 4, 5, 6);
22 exit (0);