1// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --with-derive-partialord --with-derive-ord
2//
3struct test {
4    int a;
5    char zero_length_array[0];
6};
7
8struct test2 {
9    int a;
10    char incomplete_array[];
11};
12
13struct test3 {
14    int a;
15    char zero_length_array[0];
16    char incomplete_array[];
17};
18