]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_c9x_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_c9x_recursive_init.c
1 /* C9X struct/union member init, with nested union and trailing member */
2 union node {
3         void *next;
4         char *data;
5 };
6 struct foo {
7         int b;
8         union node n;
9         int c;
10 };
11
12 struct foo f = {
13         .b = 1,
14         .n = { .next = 0, },
15         .c = 1
16 };