Files
kotlin-fork/j2k/testData/fileOrElement/enum/fieldsWithPrimaryPrivateConstructor.kt
T
2015-09-18 15:44:18 +03:00

3 lines
120 B
Kotlin
Vendored

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