mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
13 lines
182 B
Kotlin
Vendored
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()
|
|
} |