KT-4000 Class name completion is not available inside call expressions

#KT-4000 Fixed
This commit is contained in:
Nikolay Krasko
2013-09-20 21:57:52 +04:00
parent 24794741ff
commit 286eecffc5
4 changed files with 25 additions and 13 deletions
@@ -0,0 +1,13 @@
class Test {
fun foo(a: Collection<String>) {
}
}
fun test() {
val t = Test()
t.foo(Array<caret>)
}
// EXIST: ArrayList
// INVOCATION_COUNT: 2