Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/sameNameExtensionVariable.kt
T
2018-06-19 12:48:10 +03:00

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