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