// "Initialize with constructor parameter" "true" open class A(s: String) { var n: Int get() = 1 constructor(): this("") constructor(a: Int): this("" + a) } class B : A("") fun test() { val a = A("") }