blob: 1c58ff4eca05ddc67f5f4cbcc297d423bd0ae5bc [file] [log] [blame]
// bindgen-flags: --bitfield-enum "Foo"
enum Foo {
Bar = 1 << 1,
Baz = 1 << 2,
Duplicated = 1 << 2,
Negative = -3,
};