blob: cb0f2e20d2a6bdab4b36c3a50429883280172717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// bindgen-flags: --rustified-enum ".*" --raw-line '#![cfg(not(target_os="windows"))]'
enum MyEnum {
ONE,
TWO,
THREE,
FOUR
};
struct TaggedPtr {
enum MyEnum tag : 2;
long ptr : 62;
};
|