Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/optimizedDelegatedProperties/kt40815_3.kt
T
2020-08-06 21:01:59 +02:00

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
}