blob: f5b26d2fcc1bd75589bc943720f6186690349bea [file]
// IGNORE_BACKEND_MULTI_MODULE: JVM, JVM_MULTI_MODULE_IR_AGAINST_OLD
// FILE: test.kt
package test
import kotlin.reflect.KProperty
inline operator fun String.getValue(t:Any?, p: KProperty<*>): String = p.name + this
object C {
inline fun inlineFun() = {
val O by "K"
O
}.let { it() }
}
// FILE: box.kt
import test.*
fun box(): String = C.inlineFun()