summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/anon_struct_in_union_1_0.h
blob: 6b59723a3c12c82e3a4b4ca5cc11b40abc464e45 (plain)
1
2
3
4
5
6
7
8
9
// bindgen-flags: --rust-target 1.0 --with-derive-hash --with-derive-partialeq --with-derive-eq

struct s {
  union {
    struct inner {
      int b;
    } field;
  } u;
};