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

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