ce599fdf1d
Use obj/lint1 testX.c /dev/null to test. We don't descend here or provide any test infrastructure yet.
9 lines
96 B
C
9 lines
96 B
C
/* C99 union initialization */
|
|
union {
|
|
int i;
|
|
char *s;
|
|
} c[] = {
|
|
{ i: 1 },
|
|
{ s: "foo" }
|
|
};
|