summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/const_enum_unnamed.hpp
blob: cee87e6464e912caf84bc53110bfc19f4e5046d8 (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --rustified-enum ".*"

enum {
  FOO_BAR,
  FOO_BAZ,
};

class Foo {
  enum { FOO_BAR = 10 };
};