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

13 lines
185 B
Kotlin
Vendored

// PROBLEM: none
class Test {
companion object {
fun extentionFun() = 1
}
fun test() {
<caret>Companion.extentionFun()
}
}
fun Test.extentionFun() = 2