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

12 lines
135 B
Kotlin

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