- KT-1430 Import popup/type completion does not work for extension functions
- refactoring for auto import tests
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Import Class" "true"
|
||||
package testingExtensionFunctionsImport
|
||||
|
||||
import testingExtensionFunctionsImport.data.someFun
|
||||
|
||||
fun some() {
|
||||
val str = ""
|
||||
str.someFun()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Import Class" "true"
|
||||
package testingExtensionFunctionsImport
|
||||
|
||||
fun some() {
|
||||
val str = ""
|
||||
str.<caret>someFun()
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package testingExtensionFunctionsImport.data
|
||||
|
||||
fun String.someFun() {
|
||||
}
|
||||
Reference in New Issue
Block a user