1 #[cxx::bridge]
2 mod here {
3     extern "C++" {
4         type C;
5     }
6 
7     impl UniquePtr<C> {}
8 }
9 
10 #[cxx::bridge]
11 mod there {
12     extern "C++" {
13         type C = crate::here::C;
14     }
15 
16     impl UniquePtr<C> {}
17 }
18 
main()19 fn main() {}
20