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