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

29 lines
304 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*/()
}
}