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

9 lines
98 B
Plaintext
Vendored

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