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