Files
kotlin-fork/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt
T
2021-05-12 16:28:30 +00:00

10 lines
174 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: someFun
package testingExtensionFunctionsImport
fun some() {
val str = ""
str.<caret>someFun()
}
/* IGNORE_FIR */