Files
kotlin-fork/idea/testData/completion/basic/common/BeforeDotInCall.kt
T

19 lines
245 B
Kotlin

package testing
fun testTop() {
}
class TestSample() {
fun main(args : Array<String>) {
val testVar = ""
test<caret>.testFun()
}
fun testFun() {
}
}
// INVOCATION_COUNT: 2
// EXIST: testVar, testFun, testTop