blob: cf3d17efabd94e8f602ce3227079e38f4efb5b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-additional-options "-std=gnu89" } */
typedef struct
{
char a;
char b;
} foo;
bar ()
{
foo foobar[100];
foobar[1].a = 'a';
foobar[2].a = 'b';
barfoo (foobar);
}
|