blob: 7fc292b62bc8aa0a46944bf0582f26511d26f4cd [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 : Base<caret>