NetBSD/tests/util/xlint/lint1/d_c99_union_init1.c
jmmv 7ce6f390a2 Convert the lint1 tests to atf.
Initial work from the GSoC 2008 project by Lukasz Strzygowski.
2010-07-18 10:11:00 +00:00

9 lines
96 B
C

/* C99 union initialization */
union {
int i;
char *s;
} c[] = {
{ i: 1 },
{ s: "foo" }
};