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