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