18 lines
232 B
Kotlin
Vendored
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()
|
|
}
|