14 lines
158 B
C
14 lines
158 B
C
|
// test dynamic arrays definitions
|
||
|
// information was detected f field.
|
||
|
|
||
|
struct S
|
||
|
{
|
||
|
char *a;
|
||
|
char b[0];
|
||
|
char c[];
|
||
|
};
|
||
|
|
||
|
void use_struct_s(struct S *)
|
||
|
{
|
||
|
}
|