Files
kotlin-fork/compiler/testData/codegen/box/enum/kt9711.kt
T

13 lines
182 B
Kotlin
Vendored

enum class X {
B {
val value2 = "OK"
override val value = { value2 }
};
abstract val value: () -> String
}
fun box(): String {
return X.B.value()
}