blob: e0cce7bb5d33e1bcb4268a73379d9d3b4780f1c7 [file]
import kotlin.reflect.KProperty
fun foo() {
a<caret>
}
val a by Delegate()
class Delegate {
fun getValue(t: Any?, p: KProperty<*>) = 1
}
// EXISTS: a.getValue(Any?\, KProperty<*>)