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

12 lines
198 B
Plaintext
Vendored

// "Create secondary constructor" "true"
open class A {
constructor(i: Int) {
//To change body of created constructors use File | Settings | File Templates.
}
}
class B: A(1) {
}