blob: 65c009db0c15276d2690054d905a2a331e711dee [file] [log] [blame]
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --with-derive-partialord --with-derive-ord
//
struct test {
int a;
char zero_length_array[0];
};
struct test2 {
int a;
char incomplete_array[];
};
struct test3 {
int a;
char zero_length_array[0];
char incomplete_array[];
};