mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
15 lines
219 B
Kotlin
Vendored
15 lines
219 B
Kotlin
Vendored
// LANGUAGE_VERSION: 1.2
|
|
|
|
enum class X {
|
|
B {
|
|
override val value = "OK"
|
|
|
|
override val test = ::value.get()
|
|
};
|
|
|
|
abstract val value: String
|
|
|
|
abstract val test: String
|
|
}
|
|
|
|
fun box() = X.B.test |