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

#[cxx::bridge]
mod ffi {
    extern "Rust" {
        type TypeR;
    }
}

struct TypeR(str);

fn main() {}