mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
10 lines
113 B
Rust
10 lines
113 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
#[derive(Clone, Clone)]
|
|
struct Struct {
|
|
x: usize,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|