10 lines
146 B
Kotlin
Vendored
10 lines
146 B
Kotlin
Vendored
class Base(
|
|
val p1: Int
|
|
)
|
|
|
|
class Sub(
|
|
override val p1: Int
|
|
) : Base(p1) {
|
|
constructor(i : Int, j : Int) : <expr>super(i + j)</expr>
|
|
}
|