xref: /third_party/rust/crates/cxx/tests/ui/include.rs (revision 33d722a9)
1#[cxx::bridge]
2mod ffi {
3    extern "C++" {
4        include!("path/to" what);
5        include!(<path/to> what);
6        include!(<path/to);
7        include!(<path[to]>);
8        include!(...);
9    }
10}
11
12fn main() {}
13