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

19 lines
207 B
Kotlin
Vendored

open class A {
constructor(a: Int, s: String) {
}
constructor(): this(1, "foo") {
}
}
open class B: A {
constructor(a: Int): super(a, "foo") {
}
}
fun test() {
A(1, "foo")
}