summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_recursive_init.c
blob: 347644ffe107ed944c3d0358986dae444622a27b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* C99 recursive struct/union initialization */
struct top {
	int i;
	char c;
	union onion {
		short us;
		char uc;
	}  u;
	char *s;
} c[] = { 
	{ .s = "foo", .c = 'b', .u = { .uc = 'c' } },
	{ .i = 1, .c = 'a', .u = { .us = 2 } },
};
OpenPOWER on IntegriCloud