Files
kotlin-fork/compiler/testData/ir/irText/singletons/companion.kt.txt
T
2020-11-26 00:14:25 +03:00

26 lines
283 B
Plaintext
Vendored

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