mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
10 lines
98 B
Rust
10 lines
98 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
enum Bad {
|
|
A = 1u16,
|
|
B = 2i64,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|