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