10 lines
163 B
Kotlin
10 lines
163 B
Kotlin
// "Import" "true"
|
|
package testingExtensionFunctionsImport
|
|
|
|
import testingExtensionFunctionsImport.data.someFun
|
|
|
|
fun some() {
|
|
val str = ""
|
|
str.someFun()
|
|
}
|