Files
kotlin-fork/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt
T

11 lines
203 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: someFun
package testingExtensionFunctionsImport
import testingExtensionFunctionsImport.data.someFun
fun some() {
val str = ""
str.someFun()
}