blob: 3f351f0205f2f856a88cf7f8f62ba50717fe9951 [file] [log] [blame]
Joel Galenson04fa0962020-05-01 10:00:31 -07001#[cxx::bridge]
2mod ffi {
3 enum Good1 {
4 A = 0xffffffff,
5 }
6 enum Good2 {
7 B = 0xffffffff,
8 C = 2020,
9 }
10 enum Bad {
11 D = 0xfffffffe,
12 E,
13 F,
14 }
15}
16
17fn main() {}