Files
kotlin-fork/idea/testData/quickfix/initializeWithConstructorParameter/constructorWithThisDelegation.kt.after
T

11 lines
269 B
Plaintext
Vendored

// "Initialize with constructor parameter" "true"
open class RGrandAccessor(x: Int) {}
open class RAccessor : RGrandAccessor {
<caret>val f: Int
constructor(p: Boolean, f: Int) : super(1) {
this.f = f
}
constructor(p: String) : this(true, 0)
}