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

#[cxx::bridge]
mod ffi {
    unsafe extern "C++" {
        type One;
        type Two;
        fn f(&mut self);
    }

    extern "Rust" {
        fn f(self: &Self);
    }
}

fn main() {}