Type names in Swift should follow a specific convention to ensure consistency and readability of the codebase. In particular, type names should
Not following this convention leads to inconsistent and confusing code, making it harder to read and maintain. It can also cause issues with interoperability with other languages and systems.
To fix this issue, rename the type to follow the naming convention as mentioned above.
class my123 {}
enum _Color {}
struct myStruct {}
class MyClass {}
enum Color {}
struct MyStruct {}