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