summaryrefslogtreecommitdiff
path: root/tests/headers/anon_struct_in_union.h
blob: 2587ede54a3e3d4fa884c27f92d3403d13638af0 (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
struct s {
  union {
    struct inner {
      int b;
    } field;
  } u;
};