Files
kotlin-fork/idea/testData/debugger/smartStepInto/delegatedPropertyGetter.kt
T

11 lines
166 B
Kotlin
Vendored

fun foo() {
a<caret>
}
val a by Delegate()
class Delegate {
fun getValue(t: Any?, p: PropertyMetadata) = 1
}
// EXISTS: a.getValue(Any?\, PropertyMetadata)