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

12 lines
126 B
Kotlin
Vendored

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