• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --rustified-enum ".*"
2 
3 enum __attribute__((packed)) Foo {
4     Bar = 0,
5     Qux
6 };
7 
8 enum __attribute__((packed)) Neg {
9     MinusOne = -1,
10     One = 1,
11 };
12 
13 enum __attribute__((packed)) Bigger {
14     Much = 255,
15     Larger
16 };
17