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

11 lines
136 B
Plaintext
Vendored

class Test {
companion object {
fun globalFun() = 1
}
fun test() {
globalFun()
}
}
fun globalFun() = 2