17 lines
127 B
Kotlin
Vendored
17 lines
127 B
Kotlin
Vendored
class A: J {
|
|
constructor(i: Int): super() {
|
|
|
|
}
|
|
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
class B: J() {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
J()
|
|
} |