Files
kotlin-fork/compiler/testData/ir/irText/classes/delegatingConstructorCallsInSecondaryConstructors.kt
T
Dmitry Petrov 8528c23194 Constructors represented "as in Java".
TODO: extract nested initializers somehow.
2016-10-18 09:08:35 +03:00

7 lines
125 B
Kotlin
Vendored

open class Base
class Test : Base {
constructor()
constructor(xx: Int): super()
constructor(xx: Short): this()
}