1 #[cxx::bridge]
2 mod ffi {
3     extern "C++" {
4         type Opaque;
5     }
6 }
7 
8 impl Unpin for ffi::Opaque {}
9 
main()10 fn main() {}
11