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