summaryrefslogtreecommitdiff
path: root/tests/headers/anon_enum.hpp
blob: bbd52240a71db1149a86d018901eecf84eb5985a (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rustified-enum ".*"
struct Test {
  int foo;
  float bar;
  enum { T_NONE };
};

typedef enum {
  Foo,
  Bar,
} Baz;