9 lines
82 B
Kotlin
Vendored
9 lines
82 B
Kotlin
Vendored
class K: J {
|
|
constructor(a: Int): super(a) {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
J(1)
|
|
} |