Files
kotlin-fork/idea/testData/completion/basic/common/BeforeDotInCall.kt
T
2013-04-11 20:00:29 +04:00

19 lines
233 B
Kotlin

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