Files
kotlin-fork/compiler/testData/ir/irText/classes/delegatingConstructorCallsInSecondaryConstructors.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

28 lines
303 B
Plaintext
Vendored

open class Base {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
class Test : Base {
constructor() {
super/*Base*/()
/* <init>() */
}
constructor(xx: Int) {
super/*Base*/()
/* <init>() */
}
constructor(xx: Short) {
this/*Test*/()
}
}