blob: 18d3fe4173ce3b60e69410594e712d07bc3ed06d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// bindgen-flags: --rustified-enum ".*" -- -std=c++11 -Wno-narrowing
enum Foo {
BAP_ARM = 0x93fcb9,
BAP_X86 = 0xb67eed,
BAP_X86_64 = 0xba7b274f,
};
enum Bar: unsigned short {
One = 1,
Big = 65538,
};
|