You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
data class SomeType(
val field : Field
) {
sealed class /*interface*/ Field
data class TextField(val text : String) : Field()
data class ImageField(val url : String): Field()
}
will generate enum cases:
case field.TextField /*error! dot in name*/
case field.ImageField /*the same*/
...
The text was updated successfully, but these errors were encountered:
Example:
will generate enum cases:
The text was updated successfully, but these errors were encountered: