Files
kotlin-fork/j2k/testData/fileOrElement/enum/fieldsWithPrimaryPrivateConstructor.kt
T
Alexander Udalov 3c859caf2b j2k: flatten test cases and testData directory structure
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
2015-01-03 00:52:59 +03:00

7 lines
158 B
Kotlin

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