Files
kotlin-fork/compiler/testData/ir/irText/singletons/companion.kt
T
2016-10-18 09:10:19 +03:00

11 lines
104 B
Kotlin
Vendored

class Z {
fun test2() {
test()
}
companion object {
fun test() {}
}
}