blob: ed3586570d44ced58b9ba8e7b92699b03121e751 [file] [log] [blame]
// "Add constructor parameters from Base(String)" "true"
open class Base private constructor(p1: Int, val p2: Int) {
private constructor() : this(0, 1)
protected constructor(s: String) : this(s.length, 1)
}
class C(s: String) : Base<caret>(s)