Files
kotlin-fork/idea/testData/completion/basic/multifile/NotImportedExtensionFunction-2.kt
T

14 lines
174 B
Kotlin

package second
fun String.helloFun() {
}
fun String.helloWithParams(i : Int) : String {
return ""
}
fun String.helloFunPreventAutoInsert() {
}
fun Int.helloFake() {
}