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

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