Files
kotlin-fork/idea/testData/completion/basic/common/TopLevelClassCompletionInQualifiedCall.kt
T
2013-09-24 16:54:27 +04:00

13 lines
161 B
Kotlin

class Test {
fun foo(a: Collection<String>) {
}
}
fun test() {
val t = Test()
t.foo(Array<caret>)
}
// EXIST: ArrayList
// INVOCATION_COUNT: 2