Enum can only be String

Definition of enum on Android:

enum SomeEnum { case one, two, three }  //  Fails on Android
enum SomeIntEnum: Int { case one, two, three }  //  Fails on Android
enum SomeIntEnum: String { case one, two, three }  //  Compiles

doesn’t compile unless raw value is String or project is .NET.

Test project attached.

EnumTest.zip (429.9 KB)

Logged as bugs://E25948.

bugs://E25948 was closed as fixed.