Files
kotlin-fork/compiler/testData/codegen/regressions/kt1119.kt
T

12 lines
156 B
Kotlin

enum class Direction() {
NORTH {
val someSpecialValue = "OK"
}
SOUTH
WEST
EAST
}
fun box() = Direction.NORTH.someSpecialValue