| 15 | #[derive(Debug, PartialEq, Eq, TryFromPrimitive)] |
| 16 | #[repr(i32)] |
| 17 | enum CustomEvents { |
| 18 | AddOne = 41, // Values below 30 are reserved |
| 19 | AddTwo, |
| 20 | SubThree, |
| 21 | OpenFile, |
| 22 | } |
| 23 | |
| 24 | struct Adder {} |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected