9 lines
101 B
Kotlin
Vendored
9 lines
101 B
Kotlin
Vendored
open class K: J {
|
|
constructor(a: Int): super(a, "foo") {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
J(1, "foo")
|
|
} |