NetBSD-5.0.2/regress/usr.bin/xlint/lint1/test1.c

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