1 #[cxx::bridge]
2 mod ffi {
3     extern "Rust" {
4         type TypeR;
5     }
6 }
7 
8 struct TypeR(str);
9 
main()10 fn main() {}
11