d_c99_union_init4.c revision 313498
1/* test .data.l[x] */
2typedef struct {
3        int type;
4        union {
5                char b[20];
6                short s[10];
7                long l[5];
8	} data;
9} foo;
10
11
12foo bar = {
13            .type = 3,
14            .data.l[0] = 4
15};
16