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

9 lines
96 B
Kotlin
Vendored

class K: J {
constructor(a: Int): super(a, "foo") {
}
}
fun test() {
J(1, "foo")
}