Files
kotlin-fork/compiler/testData/ir/irText/classes/secondaryConstructorWithInitializersFromClassBody.kt
T

19 lines
249 B
Kotlin
Vendored

// FIR_IDENTICAL
open class Base
class TestProperty : Base {
val x = 0
constructor()
}
class TestInitBlock : Base {
val x: Int
init {
x = 0
}
constructor()
constructor(z: Any)
constructor(y: Int): this()
}