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

8 lines
107 B
Plaintext
Vendored

class C {
companion object {
fun create() = C()
}
fun test() {
create()
}
}