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

#[cxx::bridge]
mod ffi {
    extern "C++" {
        include!("path/to" what);
        include!(<path/to> what);
        include!(<path/to);
        include!(<path[to]>);
        include!(...);
    }
}

fn main() {}