Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/namedWithSameNameFunction2.kt.after
T

12 lines
152 B
Plaintext
Vendored

class C {
companion object foo {
fun foo() {}
operator fun invoke(i: Int) {
}
}
fun test() {
foo()
}
}