C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / BUG24.c
blob5d6c42c0657b10bd280e4b53d65ea38e7850ca56
1 /* { dg-additional-options "-std=gnu89" } */
3 struct ack {
4 char a, b, c;
5 };
7 main()
9 struct ack bad;
11 foo(bad);
14 foo(c)
15 struct ack c;