Files
kotlin-fork/compiler/testData/ir/irText/singletons/companion.kt
T

12 lines
121 B
Kotlin
Vendored

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