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() {}
|