KT-6132 No smart completion for argument of java static method

#KT-6132 Fixed
This commit is contained in:
Svetlana Isakova
2014-10-31 14:48:13 +03:00
parent d4275e1110
commit fad4261448
5 changed files with 25 additions and 4 deletions
@@ -0,0 +1,8 @@
package p1
fun test(s: String, i: Int) {
p2.foo(<caret>)
fun foo(i: Int) = i
// EXIST: s
@@ -0,0 +1,3 @@
package p2
fun foo(s: String) {}