25 lines
299 B
Kotlin
Vendored
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 |