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

11 lines
183 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: someTestFun
package functionimporttest
import functionimporttest.data.someTestFun
fun functionImportTest() {
someTestFun()
}