Files
kotlin/idea/testData/debugger/smartStepInto/param.kt
2015-07-23 11:54:40 +03:00

8 lines
91 B
Kotlin
Vendored

fun foo() {
f1(f2())<caret>
}
fun f1(i: Int) = 1
fun f2() {}
// EXISTS: f1(Int), f2()