blob: 7beaaef76dccecbd23319299cbbc82f9897e61b6 [file] [log] [blame]
// "Add constructor parameters from Base(Int)" "true"
// ACTION: Add constructor parameters from Base(Char, Char, String, Int, Any?,...)
// ACTION: Add constructor parameters from Base(Char, Char, String?, Int, Any?)
open class Base {
constructor(p: Int){}
constructor(p1: Char, p2: Char, p3: String, p4: Int, p5: Any?, p6: String){}
constructor(p1: Char, p2: Char, p3: String?, p4: Int, p5: Any?){}
}
class C(p: Int) : Base(p)