Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/main
/
.
/
bindgen-tests
/
tests
/
headers
/
bitfield-enum-repr-c.hpp
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
,
};