mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-07-25 15:35:23 -04:00
12 lines
156 B
C
12 lines
156 B
C
// bindgen-flags: --default-enum-style=rust --constified-enum-module=Neg
|
|
|
|
enum Foo {
|
|
Bar = 0,
|
|
Qux
|
|
};
|
|
|
|
enum Neg {
|
|
MinusOne = -1,
|
|
One = 1,
|
|
};
|