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

37 lines
438 B
Plaintext
Vendored

class Test1 {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
companion object Companion {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
}
class Test2 {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
companion object Named {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
}