Fixed KT-1476 Code completion for not imported properties
#KT-1476 Fixed
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
fun globalFun1(): Int = 1
|
||||
fun globalFun2(): Int = 1
|
||||
|
||||
object Some {
|
||||
fun globalFun3(): Int = 3
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package pack
|
||||
|
||||
fun testFun() {
|
||||
gl<caret>
|
||||
}
|
||||
|
||||
// EXIST: globalFun1, globalFun2
|
||||
// ABSENT: globalFun3
|
||||
Reference in New Issue
Block a user