Files
kotlin-fork/j2k/tests/testData/ast/enum/class/primaryPrivateConstructor.kt
T
2012-01-27 18:33:52 +04:00

12 lines
204 B
Kotlin

package demo
enum class Color(c : Int) {
private var code : Int = 0
public fun getCode() : Int {
return code
}
{
code = c
}
public fun name() : String { return "" }
public fun order() : Int { return 0 }
}