chromium/third_party/rust/chromium_crates_io/vendor/cxx-1.0.126/tests/ui/derive_noncopy.rs

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

    struct Other {
        x: usize,
    }
}

fn main() {}