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

#[cxx::bridge]
mod ffi {
    unsafe extern "C++" {
        type ThingC;
        fn repro_c(t: &&ThingC);
    }
    extern "Rust" {
        type ThingR;
        fn repro_r(t: &&ThingR);
    }
}

fn main() {}