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