Files
kotlin-fork/compiler/testData/codegen/box/enum/kt1119.kt
T
2020-03-30 16:57:52 +03:00

13 lines
190 B
Kotlin
Vendored

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