Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/smartStepInto/multilineCallChain.kt
T
2019-10-08 19:13:55 +09: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()