5ad98a139d
So #KT-24425 Fixed
14 lines
194 B
Kotlin
Vendored
14 lines
194 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
class Test {
|
|
companion object {
|
|
val extentionVar = 1
|
|
}
|
|
|
|
fun test() {
|
|
<caret>Companion.extentionVar
|
|
}
|
|
}
|
|
|
|
val Test.extentionVar: Int
|
|
get() = 2 |