xref: /minix3/tests/usr.bin/xlint/lint1/d_c99_union_init1.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc /* C99 union initialization */
2*11be35a1SLionel Sambuc union {
3*11be35a1SLionel Sambuc 	int i;
4*11be35a1SLionel Sambuc 	char *s;
5*11be35a1SLionel Sambuc } c[] = {
6*11be35a1SLionel Sambuc 	{ i: 1 },
7*11be35a1SLionel Sambuc 	{ s: "foo" }
8*11be35a1SLionel Sambuc };
9