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

8 lines
100 B
Plaintext
Vendored

// "Insert 'this()' call" "true"
class A() {
constructor(x: String)<caret> : this() {
}
}