Files
kotlin-fork/j2k/tests/testData/ast/enum/class/primaryPrivateConstructor.kt
T
2013-02-25 16:15:53 +01:00

10 lines
125 B
Kotlin

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