11 lines
203 B
Kotlin
Vendored
11 lines
203 B
Kotlin
Vendored
// "Import" "true"
|
|
// ERROR: Unresolved reference: someFun
|
|
package testingExtensionFunctionsImport
|
|
|
|
import testingExtensionFunctionsImport.data.someFun
|
|
|
|
fun some() {
|
|
val str = ""
|
|
str.someFun()
|
|
}
|