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