third_party_rust_cxx/tests/ui/derive_noncopy.rs

14 lines
154 B
Rust

#[cxx::bridge]
mod ffi {
#[derive(Copy)]
struct TryCopy {
other: Other,
}
struct Other {
x: usize,
}
}
fn main() {}