]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_recursive_init.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_recursive_init.c
1 /* C99 recursive struct/union initialization */
2 struct top {
3         int i;
4         char c;
5         union onion {
6                 short us;
7                 char uc;
8         }  u;
9         char *s;
10 } c[] = { 
11         { .s = "foo", .c = 'b', .u = { .uc = 'c' } },
12         { .i = 1, .c = 'a', .u = { .us = 2 } },
13 };