Files
kotlin-fork/idea/testData/debugger/smartStepInto/delegatedPropertyGetter.kt
T
2015-07-23 11:54:40 +03:00

11 lines
156 B
Kotlin
Vendored

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