]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_union_init1.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_init1.c
1 /* C99 union initialization */
2 union {
3         int i;
4         char *s;
5 } c[] = { 
6         { i: 1 },
7         { s: "foo" }
8 };