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