Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/basic.kt
T
2018-03-21 09:15:48 +03:00

9 lines
115 B
Kotlin
Vendored

class C {
companion object {
fun create() = C()
}
}
fun test() {
C.<caret>Companion.create()
}