1 /* $NetBSD: d_c99_anon_struct.c,v 1.3 2021/01/31 14:39:31 rillig Exp $ */ 2 # 3 "d_c99_anon_struct.c" 3 4 /* Anonymous struct test */ 5 6 typedef int type; 7 8 struct point { 9 int x; 10 int y; 11 }; 12 13 struct bar { 14 struct { 15 struct point top_left; 16 struct point bottom_right; 17 }; 18 type z; 19 }; 20 21 22 int 23 main(void) 24 { 25 struct bar b; 26 b.top_left.x = 1; 27 return 0; 28 } 29