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