Files
kotlin-fork/j2k/testData/fileOrElement/enum/fieldsWithPrimaryPrivateConstructor.kt
T

3 lines
118 B
Kotlin
Vendored

enum class Color private constructor(public val code: Int) {
WHITE(21), BLACK(22), RED(23), YELLOW(24), BLUE(25)
}