Files
kotlin/idea/testData/debugger/smartStepInto/dotQualified.kt
Natalia Ukhorskaya e8d2ba197e Debugger: implement Smart Step Into
#KT-4639 Fixed
2014-03-21 16:08:01 +04:00

12 lines
122 B
Kotlin
Vendored

fun foo() {
val a = A()
a.f1(f2())<caret>
}
class A {
fun f1(): Int = 1
}
fun f2() {}
// EXISTS: f1(), f2()