1#[cxx::bridge]
2mod ffi {
3    #[derive(Copy)]
4    struct TryCopy {
5        other: Other,
6    }
7
8    struct Other {
9        x: usize,
10    }
11}
12
13fn main() {}
14