14 lines
156 B
Rust
14 lines
156 B
Rust
|
|
#[cxx::bridge]
|
||
|
|
mod ffi {
|
||
|
|
#[derive(Clone)]
|
||
|
|
struct TryClone {
|
||
|
|
other: Other,
|
||
|
|
}
|
||
|
|
|
||
|
|
struct Other {
|
||
|
|
x: usize,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
fn main() {}
|