mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
14 lines
172 B
Rust
14 lines
172 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
#[repr(u32)]
|
|
enum Bad1 {
|
|
A = 0xFFFF_FFFF_FFFF_FFFF,
|
|
}
|
|
enum Bad2 {
|
|
A = 2000,
|
|
B = 1u8,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|