C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / str.c
blobcf3d17efabd94e8f602ce3227079e38f4efb5b7a
1 /* { dg-additional-options "-std=gnu89" } */
3 typedef struct
5 char a;
6 char b;
7 } foo;
9 bar ()
11 foo foobar[100];
12 foobar[1].a = 'a';
13 foobar[2].a = 'b';
14 barfoo (foobar);