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