Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/smartStepInto/callChain.kt
T
2019-10-08 19:13:55 +09:00

13 lines
128 B
Kotlin
Vendored

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