Found a fix / workaround. Changed my enum raw type from Int to String.
// doesn't work:
enum MyType: Int, AppEnum
// works:
enum MyType: String, AppEnum
Found a fix / workaround. Changed my enum raw type from Int to String.
// doesn't work:
enum MyType: Int, AppEnum
// works:
enum MyType: String, AppEnum