5ad98a139d
So #KT-24425 Fixed
13 lines
176 B
Kotlin
Vendored
13 lines
176 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
class Test {
|
|
companion object {
|
|
fun localFun() = 1
|
|
}
|
|
|
|
fun test() {
|
|
fun localFun() = 2
|
|
|
|
<caret>Companion.localFun()
|
|
}
|
|
} |