Files
kotlin-fork/compiler/testData/codegen/regressions/kt1119.kt
T
2012-11-21 19:49:51 +04:00

13 lines
189 B
Kotlin

enum class Direction() {
NORTH {
val someSpecialValue = "OK"
override fun f() = someSpecialValue
}
abstract fun f():String
}
fun box() = Direction.NORTH.f()