Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/delegatorToSuperCall.kt.after
T

10 lines
103 B
Plaintext
Vendored

// "Create secondary constructor" "true"
open class A {
constructor(i: Int)
}
class B: A(1) {
}