// "Move to constructor parameters" "true" open class A(s: String, val n: Int) { constructor(a: Int): this("", 0) } class B : A("", 0) fun test() { val a = A("", 0) }