unplugged-vendor/external/rust/cxx/tests/ui/derive_nonclone.rs

14 lines
156 B
Rust
Raw Normal View History

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