Files
kotlin-fork/backend.native/tests/external/codegen/box/enum/kt7257.kt
T
2017-11-16 17:21:48 +03:00

10 lines
164 B
Kotlin

enum class X {
B {
val value2 = "K"
override val value = "O".let { it + value2 }
};
abstract val value: String
}
fun box() = X.B.value