Files
kotlin-fork/testData/ast/enum/class/fieldsWithPrimaryPrivateConstructor.kt
T
2011-11-07 13:18:50 +04:00

14 lines
159 B
Kotlin

enum Color {
WHITE(21)
BLACK(22)
RED(23)
YELLOW(24)
BLUE(25)
private var code : Int
private (c : Int) {
code = c
}
public fun getCode() : Int {
return code
}
}