Files
kotlin-fork/idea/testData/completion/basic/multifile/NotImportedExtensionFunction.dependency.kt
T
2014-04-02 13:37:18 +04:00

14 lines
174 B
Kotlin

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