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

12 lines
198 B
Kotlin

// "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) {
}