Files
kotlin-fork/compiler/testData/ir/irText/classes/secondaryConstructorWithInitializersFromClassBody.kt
T
2016-10-18 09:09:07 +03:00

18 lines
232 B
Kotlin
Vendored

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()
}