1 #[cxx::bridge]
2 mod ffi {
3     enum Bad {
4         A = 1u16,
5         B = 2i64,
6     }
7 }
8 
main()9 fn main() {}
10