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

12 lines
135 B
Kotlin
Vendored

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)