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

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