7f50e6e70e
(cherry picked from commit 93aaa48)
9 lines
139 B
Plaintext
Vendored
9 lines
139 B
Plaintext
Vendored
abstract class Base(val x: Int)
|
|
|
|
class Derived : Base {
|
|
constructor(x: Int) : super(x) {
|
|
this.y = 2 * x
|
|
}
|
|
|
|
val y: Int
|
|
} |