Files
kotlin-fork/idea/testData/quickfix/addConstructorParametersFromSuper/primaryConstructorInaccessible.kt
T
2015-05-14 01:09:21 +03:00

8 lines
223 B
Kotlin

// "Add constructor parameters and use them" "true"
open class Base private(p1: Int, val p2: Int) {
private constructor() : this(0, 1)
protected constructor(s: String) : this(s.length(), 1)
}
class C : Base<caret>