]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_anon_struct.c
MFC r305358,r305449,r305451,r306367,r306397,r309474:
[FreeBSD/stable/10.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_c99_anon_struct.c
1 /* Anonymous struct test */
2
3 typedef int type;
4
5 struct point {
6         int x;
7         int y;
8 };
9
10 struct bar {
11         struct {
12                 struct point top_left;
13                 struct point bottom_right;
14         };
15         type z;
16 };
17
18
19 int
20 main(void)
21 {
22         struct bar b;
23         b.top_left.x = 1;
24         return 0;
25 }
26