blob: ae705fd00b6caa81b92ce9970bccad07556d2241 [file] [log] [blame]
David Tolnay4d733792020-11-27 12:24:22 -08001#[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() {}