chromium/third_party/rust/chromium_crates_io/vendor/cxx-1.0.126/tests/ui/unique_ptr_twice.rs

#[cxx::bridge]
mod here {
    extern "C++" {
        type C;
    }

    impl UniquePtr<C> {}
}

#[cxx::bridge]
mod there {
    extern "C++" {
        type C = crate::here::C;
    }

    impl UniquePtr<C> {}
}

fn main() {}