Files
kotlin-fork/compiler/testData/ir/irText/singletons/companion.kt.txt
T
2024-02-16 10:19:38 +00:00

26 lines
283 B
Kotlin
Vendored

class Z {
companion object Companion {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test() {
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test2() {
Companion.test()
}
}