third_party_rust_cxx/tests/ui/include.rs

13 lines
215 B
Rust

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