KT-1151 Code completion for not imported extension functions - test for completion extension function without params
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package first
|
||||
|
||||
fun firstFun() {
|
||||
val a = ""
|
||||
a.hello<caret>
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package second
|
||||
|
||||
fun String.helloFun() {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package first
|
||||
|
||||
import second.helloFun
|
||||
|
||||
fun firstFun() {
|
||||
val a = ""
|
||||
a.helloFun()
|
||||
}
|
||||
Reference in New Issue
Block a user