mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-27 01:11:38 +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() {}
|