Files
kotlin-fork/idea/idea-completion/testData/basic/common/OverloadFunctions.kt
T

25 lines
299 B
Kotlin
Vendored

// FIR_COMPARISON
package Test.MyTest
class A {
companion object {
public fun testOther() {
}
public fun testOther(a: Boolean) {
}
public fun testOther(a: Int) {
}
}
}
fun testMy() {
A.test<caret>
}
// EXIST: testOther
// NUMBER: 3