Newer
Older
UbixOS / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_c99_union_init4.c
@Charlie Root Charlie Root on 31 Dec 2017 240 bytes More Cleanup
/* test .data.l[x] */
typedef struct {
        int type;
        union {
                char b[20];
                short s[10];
                long l[5];
	} data;
} foo;


foo bar = {
            .type = 3,
            .data.l[0] = 4
};