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