8 lines
181 B
Kotlin
Vendored
8 lines
181 B
Kotlin
Vendored
import kotlin.reflect.KProperty
|
|
|
|
inline operator fun String.getValue(thiz: Any?, property: KProperty<*>): String = property.name
|
|
|
|
fun box(): String = object {
|
|
val OK by ""
|
|
}.OK
|