aboutsummaryrefslogtreecommitdiff
path: root/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/IntEnum.rs
blob: 70e71ddeb158806e49c26b8c31ee2ceaac267c70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
#![rustfmt::skip]
#![allow(non_upper_case_globals)]
use binder::declare_binder_enum;
declare_binder_enum! {
  IntEnum : [i32; 4] {
    FOO = 1000,
    BAR = 2000,
    BAZ = 2001,
    #[deprecated = "do not use this"]
    QUX = 2002,
  }
}
pub(crate) mod mangled {
 pub use super::IntEnum as _7_android_4_aidl_5_tests_7_IntEnum;
}