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