// "Create secondary constructor" "true" open class A { constructor(x: Int, y: Int) constructor(x: Int, y: String) constructor(i: Int) } class B : A(1)