1 // test dynamic arrays definitions
2 // information was detected f field.
3 
4 struct S
5 {
6   char *a;
7   char b[0];
8   char c[];
9 };
10 
use_struct_s(struct S *)11 void use_struct_s(struct S *)
12 {
13 }
14