Files
kotlin-fork/idea/testData/refactoring/changeSignature/JavaConstructorBySuperRefBefore.kt
T

9 lines
94 B
Kotlin
Vendored

open class K: J {
constructor(a: Int): <caret>super(a) {
}
}
fun test() {
J(1)
}