]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_union_init2.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_c99_union_init2.c
1 /* C99 union initialization */
2 union {
3         int i[10];
4         short s;
5 } c[] = { 
6         { s: 2 },
7         { i: { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } },
8 };