Files
kotlin-fork/nj2k/testData/newJ2k/enum/fieldsWithPrimaryPrivateConstructor.kt
T
2019-09-29 11:39:36 +03:00

4 lines
102 B
Kotlin
Vendored

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