summaryrefslogtreecommitdiff
path: root/tests/headers/newtype-enum.hpp
blob: 890683ae853108b64db1d1917a05fd50a4a6cdda (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: --newtype-enum "Foo" --rust-target 1.28  -- -std=c++11

enum Foo {
  Bar = 1 << 1,
  Baz = 1 << 2,
  Duplicated = 1 << 2,
  Negative = -3,
};