9 lines
157 B
Kotlin
Vendored
9 lines
157 B
Kotlin
Vendored
// "Import" "true"
|
|
// ERROR: Unresolved reference: someFun
|
|
package testingExtensionFunctionsImport
|
|
|
|
fun some() {
|
|
val str = ""
|
|
str.<caret>someFun()
|
|
}
|