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