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