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

15 lines
142 B
Kotlin
Vendored

fun foo() {
<caret>A()
.getB()
.f1()
}
class A {
fun getB() = B()
}
class B {
fun f1() {}
}
// EXISTS: getB(), f1()