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