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

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