1// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rustified-enum ".*"
2struct Test {
3  int foo;
4  float bar;
5  enum { T_NONE };
6};
7
8typedef enum {
9  Foo,
10  Bar,
11} Baz;
12