5ad98a139d
So #KT-24425 Fixed
11 lines
168 B
Kotlin
Vendored
11 lines
168 B
Kotlin
Vendored
class Test {
|
|
companion object {
|
|
fun f(x: Int, y: Int) = 1
|
|
}
|
|
|
|
fun f(x: Int, y: String) = 2
|
|
|
|
fun test() {
|
|
<caret>Companion.f(1, 2)
|
|
}
|
|
} |