Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/nonApplicableInsertThis.kt.after
T

10 lines
149 B
Plaintext
Vendored

// "Insert 'this()' call" "true"
open class B(val x: Int)
class A : B {
constructor(x: String)<caret> : this()
constructor() : super(1)
}