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

26 lines
259 B
Plaintext
Vendored

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