1 #[cxx::bridge] 2 mod ffi { 3 struct S { 4 x: u8, 5 } 6 7 impl fn() -> &S {} 8 } 9 main()10 fn main() {} 11